MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Docker Mongo für einzelne (nur primärer Knoten) Replikatsatz (für Entwicklung)?

Habe es funktioniert. Ich habe Folgendes in den Block in meiner Frage oben eingefügt:

hostname: mongodb
volumes:
  - ./data/mongodb/data/log/:/var/log/mongodb/
# the healthcheck avoids the need to initiate the replica set
healthcheck:
  test: test $$(echo "rs.initiate().ok || rs.status().ok" | mongo -u root -p imagiaRoot --quiet) -eq 1
  interval: 10s
  start_period: 30s