From f9501d2a4292e73412750fc0214105d0ed990542 Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Mon, 29 Dec 2025 21:47:51 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=8B=20chore:=20Pin=20MongoDB=20image?= =?UTF-8?q?=20version=20in=20Default=20Docker=20Files=20(#11151)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed MongoDB image from `mongo` to `mongo:8.0.17` in both `deploy-compose.yml` and `docker-compose.yml` files to ensure consistent usage of the specified version across environments. --- deploy-compose.yml | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy-compose.yml b/deploy-compose.yml index 2f0198a4b5..040783b0b0 100644 --- a/deploy-compose.yml +++ b/deploy-compose.yml @@ -46,7 +46,7 @@ services: container_name: chat-mongodb # ports: # Uncomment this to access mongodb from outside docker, not safe in deployment # - 27018:27017 - image: mongo + image: mongo:8.0.17 restart: always volumes: - ./data-node:/data/db diff --git a/docker-compose.yml b/docker-compose.yml index 9a3e4bbd5c..8df3044530 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -29,7 +29,7 @@ services: - ./logs:/app/logs mongodb: container_name: chat-mongodb - image: mongo + image: mongo:8.0.17 restart: always user: "${UID}:${GID}" volumes: