Advertisement
Guest User

AZERTYUIOP

a guest
Dec 21st, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. activemq:
  2. image: webcenter/activemq:5.13.2
  3. container_name: ivache-activemq
  4. ports:
  5. - "61613:61613"
  6. - "61616:61616"
  7. - "8161:8161"
  8. environment:
  9. - ACTIVEMQ_ENABLED_AUTH=false
  10. mongo:
  11. image: mongo:3.2.4
  12. container_name: ivache-mongo
  13. ports:
  14. - "27017:27017"
  15. volumes:
  16. - ./init-mongo:/data/db
  17. mysql:
  18. image: mysql:5.7.11
  19. container_name: ivache-mysql
  20. ports:
  21. - "3306:3306"
  22. environment:
  23. - MYSQL_ROOT_PASSWORD=ivache
  24. - MYSQL_DATABASE=ivache
  25. - MYSQL_USER=ivache
  26. - MYSQL_PASSWORD=!plus2vaches!
  27. volumes:
  28. - ./init-mysql:/docker-entrypoint-initdb.d
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement