diff --git a/docker-compose.yaml b/docker-compose.yaml index 2b25c0d..b649dbe 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,6 +1,4 @@ -# Use root/example as user/password credentials version: "3.1" - services: backend: build: ./src @@ -8,7 +6,7 @@ services: ports: - "3333:3333" environment: - - MONGO_URL: mongodb://root:root12345@mongo:27017/ + MONGO_URL: mongodb://root:root12345@mongo:27017/ depends_on: mongo: condition: service_started @@ -28,3 +26,4 @@ services: ME_CONFIG_MONGODB_ADMINUSERNAME: root ME_CONFIG_MONGODB_ADMINPASSWORD: root12345 ME_CONFIG_MONGODB_URL: mongodb://root:root12345@mongo:27017/ + \ No newline at end of file