Spaces:
Runtime error
Runtime error
File size: 348 Bytes
26488bb 3547cc1 046867d 26488bb 046867d 26488bb 046867d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
# Start MongoDB as mongodb user
gosu mongodb mongod --replSet rs0 --bind_ip_all --dbpath /data/db &
# Wait for MongoDB to start
sleep 10
# Initialize replica set
gosu mongodb mongosh --eval "rs.initiate({_id: 'rs0', members: [{_id: 0, host: 'localhost:27017'}]})"
# Start Rocket.Chat
cd /app/bundle
exec gosu rocketchat node main.js |