From 7f1ce8b1929674a73487290abab9540803f87af7 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Thu, 17 Feb 2022 15:19:34 +0100 Subject: ci: Fix API deployment using Docker Compose This change updates the Docker Compose configuration to properly deploy the API server, by passing the necessary Auth0 information to it. --- docker-compose.override.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'docker-compose.override.yml') diff --git a/docker-compose.override.yml b/docker-compose.override.yml index 6202e299..5d104557 100644 --- a/docker-compose.override.yml +++ b/docker-compose.override.yml @@ -35,5 +35,4 @@ services: ports: - "8082:8081" environment: - ME_CONFIG_MONGODB_ADMINUSERNAME: "${MONGO_INITDB_ROOT_USERNAME}" - ME_CONFIG_MONGODB_ADMINPASSWORD: "${MONGO_INITDB_ROOT_PASSWORD}" + ME_CONFIG_MONGODB_URL: "mongodb://${MONGO_INITDB_ROOT_USERNAME}:${MONGO_INITDB_ROOT_PASSWORD}@mongo:27017/" -- cgit v1.2.3