Updated Notify_rocketchat (markdown)

master
Chris Caron 2019-05-11 17:26:45 -04:00
parent a985f738fc
commit 8b5ca334d9
1 changed files with 0 additions and 14 deletions

@ -40,17 +40,3 @@ Send a Rocket.Chat notification to the channel *#nuxref*:
# Assuming our {hostname} is rocket.server.local
apprise rocket://l2g:awes0m3!@rocket.server.local/#nuxref
```
## Setup
Here is how I set up a quick rocket.chat server to test against. This may or may not be useful to other people.
### Docker
Based on [this source](https://hub.docker.com/_/rocket.chat/):
```bash
# Docker (assuming a connection to docker.io)
docker pull rocketchat/rocket.chat
docker pull mongo:3.0
docker run --name db -d mongo:3.0 --smallfiles
docker run --name rocketchat --link db -d rocket.chat
# Then visit http://localhost:3000
```