Hello, im here to ask about a little thing that i didnt find how to solve it,
i have my rocket chat running after a docker-compose, for an accident i started it as localhost:3000 and now im getting some problems because of that, so i have to change it to my domain adress instead of “localhost”.
rocketchat:
image: registry.rocket.chat/rocketchat/rocket.chat:3.13.5
command: >
bash -c
“for i in seq 1 30
; do
node main.js &&
s=$$? && break || s=$$?;
echo “Tried $$i times. Waiting 5 secs…”;
sleep 5;
done; (exit $$s)”
restart: unless-stopped
volumes:
- ./uploads:/app/uploads
environment:
- PORT=3000
- ROOT_URL=http://localhost:3000 >>> MY DOMAIN
/\ ------ This is what i want to change
- MONGO_URL=mongodb://mongo:27017/rocketchat
- MONGO_OPLOG_URL=mongodb://mongo:27017/local
- MAIL_URL=smtp://smtp.email
I would be very grateful if someone could help me with this little problem