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 b5a7e25 commit cdbafea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions development/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
image: mongo:latest
container_name: mongodb-dev
restart: unless-stopped
command: ["--replSet", "rs0", "--bind_ip_all", "--port", "27017", "--keyFile", "/etc/mongo/replica.key"]
# command: ["--replSet", "rs0", "--bind_ip_all", "--port", "27017", "--keyFile", "/etc/mongo/replica.key"]
ports:
- 37017:27017
env_file:
Expand All @@ -33,8 +33,8 @@ services:
# chmod 400 /etc/mongo/replica.key
# chown 999:999 /etc/mongo/replica.key
healthcheck:
# 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
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 cdbafea

Please sign in to comment.