update dokcer compose files to remove mongo replica set config

This commit is contained in:
Alex Holliday
2025-08-13 15:16:01 -07:00
parent f2e2d5c2ed
commit 096cfccf40
4 changed files with 17 additions and 29 deletions
+3 -3
View File
@@ -35,13 +35,13 @@ services:
mongodb:
image: uptime_mongo:latest
restart: always
command: ["mongod", "--quiet", "--replSet", "rs0", "--bind_ip_all"]
command: ["mongod", "--quiet", "--bind_ip_all"]
volumes:
- ./mongo/data:/data/db
healthcheck:
test: echo "try { rs.status() } catch (err) { rs.initiate({_id:'rs0',members:[{_id:0,host:'mongodb:27017'}]}) }" | mongosh --port 27017 --quiet
test: ["CMD", "mongosh", "--eval", "db.adminCommand('ping')", "--quiet"]
interval: 5s
timeout: 30s
start_period: 0s
start_interval: 1s
retries: 30
retries: 30