A step-by-step guide to setting up Automa using Docker containers
automa
).automa-postgres-data
. It listens on port 5432. Make sure to replace <db-password>
with a secure password of your choice.
automa-redis-data
. It listens on port 6379. Make sure to replace <cache-password>
with a secure password of your choice.
<your-cookie-secret>
with a secure secret for session management, and <db-password>
and <cache-password>
with the passwords you set earlier.
We also set the BASE_URI
and CLIENT_URI
environment variables to point to the URLs where the API and Console services will be accessible, respectively. We recommend using the server’s public IP address or domain name for these variables. If you are running this on your local machine, you can use localhost
in place of <your-server>
.
localhost
. You would then set the public URL provided
by the tool as the WEBHOOK_URI
environment variable for the automa-api
container.API_URI
environment variable to the URL of the API service. We recommend using the server’s public IP address or domain name for this variable. If you are running this on your local machine, you can use localhost
in place of <your-server>
.
http://<your-server>
in your browser, you should see the Automa Console interface. If you are running this on your local machine, you can use http://localhost
instead.