Tôi đã gặp một vấn đề tương tự, đây là những gì tôi đã làm. Tôi đang sử dụng docker-soạn thay vì fig.
Trong trình soạn thảo-soạn thư của tôi.
mongors:
image: mongo
ports:
- "27017:27017"
volumes:
- ./mongo:mongo
entrypoint: mongo/entrypoint.sh
Trong entrypoint.sh của tôi:
#!/bin/bash
mongod --port 27018 --replSet rs0 --fork --syslog --smallfiles
mongo --port 27018 --eval "rs.initiate({_id : 'rs0', members : [{_id : 0, host : 'localhost:27018'}]})"
mongo --port 27018 --eval "while(true) {if (rs.status().ok) break;sleep(1000)};"
Đảm bảo rằng nó có thể thực thi:
chmod +x mongo/entrypoint.sh
Nó hơi hacky, nhưng nó hoạt động :)