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

Commit

Permalink
BC-7461 - upgrade to mongo 6
Browse files Browse the repository at this point in the history
  • Loading branch information
virgilchiriac committed Jul 1, 2024
1 parent 020aeb8 commit 7968dcb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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-primary:
image: mongo:5.0.26 ## change tag in version.env
image: mongo:6.0.15 ## 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

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

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

mongosetup:
image: mongo:5.0.26
image: mongo:6.0.15
depends_on:
- mongodb-primary
- 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=5.0.26
MONGO_DOCKER_TAG=6.0.15
RABBITMQ_DOCKER_TAG=3.8.9-management

0 comments on commit 7968dcb

Please sign in to comment.