Spaces:
Runtime error
Runtime error
# Start MongoDB | |
mongod --fork --logpath /var/log/mongodb.log | |
# Wait for MongoDB to be ready | |
until mongosh --eval "print(\"waited for connection\")" > /dev/null 2>&1; do | |
echo "Waiting for MongoDB to be ready..." | |
sleep 1 | |
done | |
# Start the Node.js application | |
exec node /app/bundle/main.js |