1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 00:08:49 +00:00
dockerfiles/errbot/README.md

58 lines
1.4 KiB
Markdown
Raw Normal View History

2017-01-21 12:57:35 +00:00
errbot
======
![](http://errbot.io/en/latest/_static/errbot.png)
[Errbot][1] is a chatbot, a daemon that connects to your favorite chat service
and brings your tools into the conversation.
2017-01-22 14:21:00 +00:00
2017-01-21 12:57:35 +00:00
## docker-compose.yml
```yaml
errbot:
image: vimagick/errbot
volumes:
- ./data:/home/errbot
tty: yes
restart: always
```
## up and running
```bash
$ mkdir -m 777 data
$ docker-compose run --rm errbot --init
$ vim data/config.py
$ docker-compose up -d
```
2017-01-22 14:21:00 +00:00
Check the example config.py [here][2].
2017-01-21 12:57:35 +00:00
## chat-ops
```
master [8:50 PM] !tryme
errbot [8:50 PM] It works!
2017-01-21 13:57:13 +00:00
master [8:51 PM] !help
errbot [8:51 PM] All commands ...
master [8:52 PM] !whoami
errbot [8:52 PM]
┏━━━━━━━━━━┳━━━━━━━━━━━━━┓
┃ key ┃ value ┃
┡━━━━━━━━━━╇━━━━━━━━━━━━━┩
│ person │ `@master`
├──────────┼─────────────┤
│ nick │ `master`
├──────────┼─────────────┤
│ fullname │ `Mr Robot`
├──────────┼─────────────┤
│ client │ `XXXXXXXXX`
└──────────┴─────────────┘
2017-01-21 12:57:35 +00:00
```
[1]: http://errbot.io
2017-01-22 14:21:00 +00:00
[2]: http://errbot.io/en/latest/_downloads/config-template.py