2015-09-26 10:52:43 +02:00
|
|
|
hubot
|
|
|
|
=====
|
|
|
|
|
2016-04-24 07:30:48 +02:00
|
|
|
![](https://badge.imagelayers.io/vimagick/hubot:latest.svg)
|
|
|
|
|
2017-01-10 20:12:23 +02:00
|
|
|
[Hubot][1] is a customizable, life embetterment robot commissioned by github.
|
|
|
|
Hubot's power comes through [scripts][3].
|
2015-09-26 10:52:43 +02:00
|
|
|
|
|
|
|
## docker-compse.yml
|
|
|
|
|
2016-04-24 07:30:48 +02:00
|
|
|
```yaml
|
2015-09-26 10:52:43 +02:00
|
|
|
hubot:
|
|
|
|
image: vimagick/hubot
|
2017-01-10 20:12:23 +02:00
|
|
|
volumes:
|
|
|
|
- ./data:/home/hubot/scripts
|
2015-09-26 10:52:43 +02:00
|
|
|
environment:
|
2017-01-10 20:12:23 +02:00
|
|
|
- HUBOT_SLACK_TOKEN=xoxb-xxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx
|
2015-09-26 10:52:43 +02:00
|
|
|
restart: always
|
|
|
|
```
|
|
|
|
|
|
|
|
> Goto [here][2] to generate `HUBOT_SLACK_TOKEN`.
|
|
|
|
|
|
|
|
[1]: https://hubot.github.com/
|
|
|
|
[2]: https://my.slack.com/services/new/hubot
|
2017-01-11 20:01:57 +02:00
|
|
|
[3]: https://hubot.github.com/docs/scripting/
|