Advertisement
Guest User

Untitled

a guest
Mar 11th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. version: "2"
  2.  
  3. services:
  4. wpdb:
  5. restart: always
  6. image: mysql:5.7
  7. container_name: wpdb
  8. environment:
  9. - MYSQL_ROOT_PASSWORD=wordpress
  10. - MYSQL_DATABASE=wordpress
  11. - MYSQL_USER=wordpress
  12. - MYSQL_PASSWORD=wordpress
  13. volumes:
  14. - /opt/wordpress/mysql:/var/lib/mysql
  15. wordpress:
  16. image: wordpress
  17. container_name: wordpress
  18. restart: always
  19. depends_on:
  20. - wpdb
  21. environment:
  22. WORDPRESS_DB_HOST: wpdb:3306
  23. WORDPRESS_DB_USER: wordpress
  24. WORDPRESS_DB_PASSWORD: wordpress
  25. ports:
  26. - "8080:80"
  27. volumes:
  28. - /opt/wordpress/data:/var/www/html
  29. volumes:
  30. wpdb:
  31. wordpress:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement