Skip to content

Commit

Permalink
Update docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cyri113 authored Jan 4, 2024
1 parent 1003aa9 commit f4d40bd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion development/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,21 @@ services:
image: mongo:latest
container_name: mongodb-dev
restart: unless-stopped
command: ["--replSet", "rs0", "--bind_ip_all", "--port", "27017", "--keyFile", "/etc/mongo/replica.key"]
ports:
- 37017:27017
env_file:
- ./.env.db
volumes:
- /mongo/replica.key:/etc/mongo/replica.key
- mongodb_data_container:/data/db
- type: bind
source: ../init-mongo.sh
target: /docker-entrypoint-initdb.d/init-mongo.sh
read_only: true
healthcheck:
test: echo 'db.stats().ok' | mongosh localhost:27017/test --quiet
# test: echo 'db.stats().ok' | mongosh localhost:27017/test --quiet
test: echo "try { rs.status() } catch (err) { rs.initiate({_id:'rs0',members:[{_id:0,host:'mongodb-dev'}]}) }" | mongosh --port 27017 --quiet
interval: 60s
timeout: 10s
retries: 2
Expand Down

0 comments on commit f4d40bd

Please sign in to comment.