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

Commit

Permalink
fix yml
Browse files Browse the repository at this point in the history
  • Loading branch information
virgilchiriac committed Jul 5, 2024
1 parent 7968dcb commit e85570e
Showing 1 changed file with 4 additions and 4 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 ## change tag in version.env
image: mongo:6.0.15
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 ## change tag in version.env
image: mongo:6.0.15
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 ## change tag in version.env
image: mongo:6.0.15
container_name: mongodb-arbiter
ports:
- "27017"
Expand All @@ -67,7 +67,7 @@ services:
entrypoint: [ "bash", "/scripts/mongo_setup.sh" ]

redis:
image: redis:${REDIS_DOCKER_TAG:-latest} ## change tag in version.env
image: redis:${REDIS_DOCKER_TAG:-latest}
container_name: redis
command: ["redis-server", "--appendonly", "yes"]
hostname: redis
Expand Down

0 comments on commit e85570e

Please sign in to comment.