MongoDB 7
ApplicationMongoDB Server is a general purpose, document-based, distributed database built for modern application developers and for the cloud era.
Startup Command
mongod --fork --dbpath /home/container/mongodb/ --port ${SERVER_PORT} --bind_ip 0.0.0.0 --logpath /home/container/logs/mongo.log -f /home/container/mongod.conf; until nc -z -v -w5 127.0.0.1 ${SERVER_PORT}; do echo 'Waiting for mongodb connection...'; sleep 5; done; mongosh --username ${MONGO_USER} --password ${MONGO_USER_PASS} --host 127.0.0.1:${SERVER_PORT} && mongosh --eval "db.getSiblingDB('admin').shutdownServer()" 127.0.0.1:${SERVER_PORT}