Advertisement
Guest User

Untitled

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