From 1a822683a9950cf01aad2e6743354f8a0aa70204 Mon Sep 17 00:00:00 2001 From: SwiftyOS Date: Mon, 4 Nov 2024 11:25:44 +0100 Subject: [PATCH] fix(platform): Add ENCRYPTION_KEY Env Var to docker compose file --- autogpt_platform/docker-compose.platform.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/autogpt_platform/docker-compose.platform.yml b/autogpt_platform/docker-compose.platform.yml index e2a24fa51f..537a0f55eb 100644 --- a/autogpt_platform/docker-compose.platform.yml +++ b/autogpt_platform/docker-compose.platform.yml @@ -69,6 +69,7 @@ services: - DATABASEMANAGER_HOST=executor - FRONTEND_BASE_URL=http://localhost:3000 - BACKEND_CORS_ALLOW_ORIGINS=["http://localhost:3000"] + - ENCRYPTION_KEY=some-long-random-string-encryption-key ports: - "8006:8006" - "8003:8003" # execution scheduler @@ -104,7 +105,8 @@ services: - ENABLE_AUTH=true - PYRO_HOST=0.0.0.0 - AGENTSERVER_HOST=rest_server - - DATABASEMANAGER_HOST=0.0.0.0 + - DATABASEMANAGER_HOST=0.0.0.0 + - ENCRYPTION_KEY=some-long-random-string-encryption-key ports: - "8002:8000" networks: