fix(mongo): use appName instead of localhost for replica set

localhost doesn't work properly in containers
This commit is contained in:
ayham291
2025-12-14 23:58:08 +01:00
parent 72cc7a2d2c
commit 6bb5404f87

View File

@@ -54,7 +54,7 @@ if [ "$REPLICA_STATUS" != "1" ]; then
mongosh --eval '
rs.initiate({
_id: "rs0",
members: [{ _id: 0, host: "localhost:27017", priority: 1 }]
members: [{ _id: 0, host: "${appName}:27017", priority: 1 }]
});
// Wait for the replica set to initialize