mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-08-04 06:52:47 +00:00
🐋 chore: Pin MongoDB image version in Default Docker Files (#11151)
- 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:
parent
dcda6a249c
commit
f9501d2a42
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue