Updated Notify_rocketchat (markdown)

master
Chris Caron 2019-05-11 16:32:57 -04:00
parent 12e7b405a8
commit 0b929a5d6a
1 changed files with 4 additions and 4 deletions

@ -47,10 +47,10 @@ Here is how I set up a quick rocket.chat server to test against. This may or ma
Based on [this source](https://hub.docker.com/_/rocket.chat/):
```bash
# Docker (assuming a connection to docker.io)
sudo docker pull rocket.chat
sudo docker pull mongo:3.0
docker pull rocket.chat
docker pull mongo:3.0
sudo docker run --name db -d mongo:3.0 --smallfiles
sudo docker run --name rocketchat -p 80:3000 --env ROOT_URL=http://$(hostname) --link db -d rocket.chat
docker run --name db -d mongo:3.0 --smallfiles
docker run --name rocketchat -p 80:3000 --env ROOT_URL=http://localhost --link db -d rocket.chat
# Then visit http://server.you.ran.these.commands.on
```