An experiment with hubot with the hipchat adapter on Docker.
The Docker container contains both Hubot as well as Redis.
- Change the name in
supervisord.conf
- Setup the credentials in
Dockerfile
- Run
docker build -t my-hubot .
- Run
docker run -d my-hubot
Another example of running the bot is:
docker run -e HUBOT_HIPCHAT_JID=jid \
-e HUBOT_HIPCHAT_PASSWORD=secret \
-e HUBOT_AUTH_ADMIN=admin \
-d my-hubot
The hipchat-hubot is a good place to start as it describes how to setup both Hipchat and Hubot.
Hubot docs can be found in the hubot repo.