Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. version: '2'
  2. services:
  3. wordpress:
  4. image: visiblevc/wordpress:latest
  5. links:
  6. - db
  7. ports:
  8. - 8080:80
  9. - 443:443
  10. volumes:
  11. - ./data:/data # Required if importing an existing database
  12. environment:
  13. DB_HOST: db
  14. DB_NAME: wordpress
  15. DB_PASS: root # must match below
  16. WP_DEBUG: 'true'
  17. db:
  18. image: mysql:5.7 # or mariadb:10
  19. ports:
  20. - 3306:3306
  21. volumes:
  22. - data:/var/lib/mysql
  23. environment:
  24. MYSQL_ROOT_PASSWORD: root
  25. phpmyadmin:
  26. image: phpmyadmin/phpmyadmin
  27. links:
  28. - db
  29. ports:
  30. - 8001:80
  31. volumes:
  32. data: {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement