1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-19 07:18:06 +02:00

Update config-seed to Mongo v6

This commit is contained in:
mserranom 2024-07-17 11:39:03 +02:00
parent 7a8401897b
commit dc7c1559b2
2 changed files with 6 additions and 1 deletions

View file

@ -13,6 +13,10 @@
Redis persistence documentation: https://redis.io/docs/latest/operate/oss_and_stack/management/persistence/
- Updated mongo to 6.0 in [`config-seed/overleaf.rc`](https://github.com/overleaf/toolkit/blob/master/lib/config-seed/overleaf.rc).
Mongo image name needs to be split between `MONGO_IMAGE` (with just the image name) and `MONGO_VERSION` in `config/overleaf.rc`.
## 2024-07-16
### Added
- Added support for Mongo 6.0.

View file

@ -17,7 +17,8 @@ DOCKER_SOCKET_PATH=/var/run/docker.sock
# Mongo configuration
MONGO_ENABLED=true
MONGO_DATA_PATH=data/mongo
MONGO_IMAGE=mongo:5.0
MONGO_IMAGE=mongo
MONGO_VERSION=6.0
# Redis configuration
REDIS_ENABLED=true