Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

BC-6654 - Update mongo to v5 #70

Merged
merged 17 commits into from
Apr 17, 2024
8 changes: 4 additions & 4 deletions compose-files/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
### Schul-Cloud Server
###
mongodb:
image: mongo:4.2.9 ## change tag in version.env
image: mongo:5.0.26 ## change tag in version.env
container_name: mongodb-primary
ports:
- "27017:27017"
Expand All @@ -34,7 +34,7 @@ services:
command: --bind_ip_all --replSet rs0 --enableMajorityReadConcern false

mongodb-secondary:
image: mongo:4.2.9 ## change tag in version.env
image: mongo:5.0.26 ## change tag in version.env
container_name: mongodb-secondary
ports:
- "27017"
Expand All @@ -45,7 +45,7 @@ services:
command: --bind_ip_all --replSet rs0 --enableMajorityReadConcern false

mongodb-arbiter:
image: mongo:4.2.9 ## change tag in version.env
image: mongo:5.0.26 ## change tag in version.env
container_name: mongodb-arbiter
ports:
- "27017"
Expand All @@ -56,7 +56,7 @@ services:
command: --bind_ip_all --replSet rs0 --enableMajorityReadConcern false

mongosetup:
image: mongo:4.2.9
image: mongo:5.0.26
depends_on:
- mongodb
- mongodb-secondary
Expand Down
2 changes: 1 addition & 1 deletion envs/default.env
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
COMPOSE_FILES_PATH=./compose-files
POSTGRES_DOCKER_TAG=11.9
REDIS_DOCKER_TAG=6.0.8
MONGO_DOCKER_TAG=4.2.9
MONGO_DOCKER_TAG=5.0.26
RABBITMQ_DOCKER_TAG=3.8.9-management
Loading