Update egg-mongo-d-b7.json

replacing the 127.0.0.1 with {{SERVER_IP}} to fix when the node has more than 1 ip
This commit is contained in:
Turkidev
2024-03-07 19:49:37 +03:00
committed by GitHub
Unverified
parent 3ad774b964
commit f32d3b6fa0
+2 -2
View File
@@ -13,7 +13,7 @@
"MongoDB_7": "ghcr.io\/parkervcp\/yolks:mongodb_7"
},
"file_denylist": [],
"startup": "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}",
"startup": "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 {{SERVER_IP}} ${SERVER_PORT}; do echo 'Waiting for mongodb connection...'; sleep 5; done; mongosh --username ${MONGO_USER} --password ${MONGO_USER_PASS} --host {{SERVER_IP}}:${SERVER_PORT} && mongosh --eval \"db.getSiblingDB('admin').shutdownServer()\" {{SERVER_IP}}:${SERVER_PORT}",
"config": {
"files": "{\r\n \"mongod.conf\": {\r\n \"parser\": \"file\",\r\n \"find\": {\r\n \"#security:\": \"security: \\r\\n authorization: \\\"enabled\\\"\"\r\n }\r\n }\r\n}",
"startup": "{\r\n \"done\": \"child process started successfully\"\r\n}",
@@ -49,4 +49,4 @@
"field_type": "text"
}
]
}
}