Skip to content

Commit

Permalink
Update to use Mongo 5 as major version (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfmohassel authored Sep 13, 2022
1 parent c3f6bb4 commit 82f106f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.8"

services:
mongo1:
image: mongo:4
image: mongo:5
container_name: mongo1
command: ["--replSet", "my-replica-set", "--bind_ip_all", "--port", "30001"]
volumes:
Expand All @@ -15,7 +15,7 @@ services:
start_period: 30s

mongo2:
image: mongo:4
image: mongo:5
container_name: mongo2
command: ["--replSet", "my-replica-set", "--bind_ip_all", "--port", "30002"]
volumes:
Expand All @@ -24,7 +24,7 @@ services:
- 30002:30002

mongo3:
image: mongo:4
image: mongo:5
container_name: mongo3
command: ["--replSet", "my-replica-set", "--bind_ip_all", "--port", "30003"]
volumes:
Expand Down

0 comments on commit 82f106f

Please sign in to comment.