From de4ff1b1be6732d5724424c5c1303061ff40b943 Mon Sep 17 00:00:00 2001 From: sanford schaffer Date: Thu, 23 Apr 2026 13:44:18 -0400 Subject: [PATCH 1/2] Revert docker-compose.yml to bitnami/mongodb:6.0.13 and restore removed comments --- docker-compose.yml | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index cdda83add..768693a50 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,8 +1,11 @@ version: "3" services: mage-db: - image: mongo:6.0.4 - container_name: mage-db + image: bitnami/mongodb:6.0.13 + # Uncomment the following ports block to allow the mongo client on your + # host machine to connect to MongoDB in the Docker container. + # ports: + # - 27017:27017 ports: - 27017:27017 volumes: @@ -33,6 +36,20 @@ services: CLAM_AV_URL: tcp://host.docker.internal:3310 # Mac host connection for ClamAV restart: unless-stopped + # Uncomment the following block to enable the TLS reverse proxy. You will + # also need to generate the key and certificate as the README describes. + # mage-web-proxy: + # image: nginx + # volumes: + # - ./web/nginx.conf:/etc/nginx/nginx.conf + # - ./web/mage-web.crt:/etc/nginx/ssl/web.crt + # - ./web/mage-web.key:/etc/nginx/ssl/web.key + # ports: + # - 4280:80 + # - 4243:4243 + # networks: + # - mage.net + networks: mage.net: driver: bridge \ No newline at end of file From f20ff9efe2072699e2e39f917b7e3f5fd2565f6c Mon Sep 17 00:00:00 2001 From: sanford schaffer Date: Wed, 6 May 2026 10:13:07 -0400 Subject: [PATCH 2/2] use patched version 6.0.27 image name to be mongo:6.0.27 --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 768693a50..3d8b94532 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: "3" services: mage-db: - image: bitnami/mongodb:6.0.13 + image: mongo:6.0.27 # Uncomment the following ports block to allow the mongo client on your # host machine to connect to MongoDB in the Docker container. # ports: