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

Commit

Permalink
adjusting used mongo version
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSchuhmacher committed Jul 10, 2024
1 parent 4d4c5bb commit 074e08e
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:6.0.15
image: mongo:6.0.16
container_name: mongodb-primary
ports:
- "27017:27017"
Expand All @@ -34,7 +34,7 @@ services:
command: --bind_ip_all --replSet rs0

mongodb-secondary:
image: mongo:6.0.15
image: mongo:6.0.16
container_name: mongodb-secondary
ports:
- "27017"
Expand All @@ -45,7 +45,7 @@ services:
command: --bind_ip_all --replSet rs0

mongodb-arbiter:
image: mongo:6.0.15
image: mongo:6.0.16
container_name: mongodb-arbiter
ports:
- "27017"
Expand All @@ -56,7 +56,7 @@ services:
command: --bind_ip_all --replSet rs0

mongosetup:
image: mongo:6.0.15
image: mongo:6.0.16
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=6.0.15
MONGO_DOCKER_TAG=6.0.16
RABBITMQ_DOCKER_TAG=3.8.9-management

0 comments on commit 074e08e

Please sign in to comment.