Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. version: '2'
  2. networks:
  3. bridge:
  4. driver: bridge
  5. services:
  6. web:
  7. image: "xwiki:mysql-tomcat"
  8. container_name: xwiki-mysql-tomcat-web
  9. depends_on:
  10. - db
  11. ports:
  12. - "80:8080"
  13. environment:
  14. - DB_USER=xwiki
  15. - DB_PASSWORD=xwiki
  16. - DB_HOST=xwiki-mysql-db
  17. volumes:
  18. - xwiki-data:/usr/local/xwiki
  19. networks:
  20. - bridge
  21. db:
  22. image: "mysql:5.7"
  23. container_name: xwiki-mysql-db
  24. volumes:
  25. - ./xwiki.cnf:/etc/mysql/conf.d/xwiki.cnf
  26. - mysql-data:/var/lib/mysql
  27. environment:
  28. - MYSQL_ROOT_PASSWORD=xwiki
  29. - MYSQL_USER=xwiki
  30. - MYSQL_PASSWORD=xwiki
  31. - MYSQL_DATABASE=xwiki
  32. networks:
  33. - bridge
  34. volumes:
  35. mysql-data: {}
  36. xwiki-data: {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement