Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. version: '3.1'
  2.  
  3. services:
  4.  
  5. mongo:
  6. image: mongo:4.0.4-xenial
  7. restart: always
  8. environment:
  9. MONGO_INITDB_ROOT_USERNAME: root
  10. MONGO_INITDB_ROOT_PASSWORD: example
  11.  
  12. mongo-express:
  13. image: mongo-express
  14. restart: always
  15. ports:
  16. - 8081:8081
  17. environment:
  18. ME_CONFIG_MONGODB_ADMINUSERNAME: root
  19. ME_CONFIG_MONGODB_ADMINPASSWORD: example
  20. lidlbot:
  21. image: lidlbot:nightly
  22. restart: always
  23. build:
  24. context: .
  25. depends_on:
  26. - mongo
  27. environment:
  28. MONGO_DB_USER: root
  29. MONGO_DB_PASSORD: example
  30. MONGO_DB_HOST: mongo
  31. ROOT_TWITCH_USERNAME:
  32. BOT_USERNAME:
  33. OAUTH_TOKEN:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement