Advertisement
Guest User

Untitled

a guest
Oct 6th, 2016
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. mongo:
  2. image: mongo
  3. command: mongod --smallfiles --oplogSize 128
  4.  
  5. rocketchat:
  6. image: rocketchat/rocket.chat:latest
  7. environment:
  8. - PORT=3000
  9. - ROOT_URL=http://xxx.xxx.xxx.xxx:3000
  10. - MONGO_URL=mongodb://mongo:27017/rocketchat
  11. links:
  12. - mongo:mongo
  13. ports:
  14. - 3000:3000
  15.  
  16. # hubot, the popular chatbot (add the bot user first and change the password before starting this image)
  17. hubot:
  18. image: rocketchat/hubot-rocketchat:v0.1.4
  19. environment:
  20. - ROCKETCHAT_URL=xxx.xxx.xxx.xxx:3000
  21. - ROCKETCHAT_ROOM=''
  22. - LISTEN_ON_ALL_PUBLIC=true
  23. - ROCKETCHAT_USER=alicja
  24. - ROCKETCHAT_PASSWORD=password
  25. - BOT_NAME=alicja
  26. # - GOOGLE_API_KEY=yourgoogleapikey
  27. # you can add more scripts as you'd like here, they need to be installable by npm
  28. - EXTERNAL_SCRIPTS=hubot-help,hubot-seen,hubot-links,hubot-diagnostics,hubot-google,hubot-reddit,hubot-bofh,hubot-bookmark,hubot-shipit,hubot-maps
  29. links:
  30. - rocketchat:rocketchat
  31. # this is used to expose the hubot port for notifications on the host on port 3001, e.g. for hubot-jenkins-notifier
  32. ports:
  33. - 3001:8080
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement