The docker-compose.yml file defines a glados deployment containing a trin node,
a postgres instance, and the components of glados pre-configured to use the node and postgres
instance.
First, set the environment variables:
-
GLADOS_POSTGRES_DATA_DIRto the directory where Postgres should store its data on the host machine. -
GLADOS_POSTGRES_PASSWORDto the password for accessing the DB. -
GLADOS_PROVIDER_URLto the execution API provider URL. -
GLADOS_PORTAL_CLIENTto the Portal client to be used for Portal network access. Currently supported values aretrinandfluffy.
Then, from the root of this repo, run:
docker compose up -d
If successful, you should be able to navigate to 127.0.0.1:3001/ and see
the Glados web dashboard populating with data.
docker compose pull && docker compose up -d
docker compose down will remove the deployment.