🐋 chore: Pin MongoDB image version in Default Docker Files (#11151)
Some checks failed
Docker Dev Branch Images Build / build (Dockerfile, lc-dev, node) (push) Waiting to run
Docker Dev Branch Images Build / build (Dockerfile.multi, lc-dev-api, api-build) (push) Waiting to run
Docker Dev Images Build / build (Dockerfile, librechat-dev, node) (push) Has been cancelled
Docker Dev Images Build / build (Dockerfile.multi, librechat-dev-api, api-build) (push) Has been cancelled
Sync Locize Translations & Create Translation PR / Sync Translation Keys with Locize (push) Has been cancelled
Sync Locize Translations & Create Translation PR / Create Translation PR on Version Published (push) Has been cancelled

- 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.
This commit is contained in:
Danny Avila 2025-12-29 21:47:51 -05:00 committed by GitHub
parent dcda6a249c
commit f9501d2a42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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: