Měl jsem podobný problém, udělal jsem to. Používám docker-compose místo obr.
V mém docker-compose.
mongors:
image: mongo
ports:
- "27017:27017"
volumes:
- ./mongo:mongo
entrypoint: mongo/entrypoint.sh
V mém entrypoint.sh:
#!/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)};"
Ujistěte se, že je spustitelný:
chmod +x mongo/entrypoint.sh
Je to trochu otřepané, ale jde to :)