From a4ba11529f35bc19d26a22a21ff0d1ba0b5dc7ab Mon Sep 17 00:00:00 2001 From: Ziggy Date: Fri, 22 Dec 2023 18:53:49 +0100 Subject: [PATCH] Upgraded mongo-express to a stable release (1.0.0) and disabled the Basic Auth that was added at some point --- docker-compose.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index add5e977a..5861ca2e5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -20,7 +20,7 @@ services: start_period: 40s mongo-express: - image: mongo-express:0.54.0 + image: mongo-express:1.0.0 restart: "no" depends_on: mongo: @@ -29,6 +29,8 @@ services: - "8081:8081" environment: ME_CONFIG_MONGODB_URL: mongodb://mongo:27017/ + ME_CONFIG_BASICAUTH_USERNAME: "" + ME_CONFIG_BASICAUTH_PASSWORD: "" healthcheck: test: "wget -O - localhost:8081" interval: 5s