Guest User

Untitled

a guest
Feb 20th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. version: '3.2'
  2.  
  3. services:
  4. db:
  5. image: mysql:5.7
  6. volumes:
  7. - type: volume
  8. source: wp_db
  9. target: /var/lib/mysql
  10. restart: always
  11. environment:
  12. MYSQL_ROOT_PASSWORD: somewordpress
  13. MYSQL_DATABASE: wordpress
  14. MYSQL_USER: wordpress
  15. MYSQL_PASSWORD: wordpress
  16.  
  17. wordpress:
  18. depends_on:
  19. - db
  20. image: wordpress:latest
  21. volumes:
  22. - .:/var/www/html
  23. ports:
  24. - "8000:80"
  25. restart: always
  26. environment:
  27. WORDPRESS_DB_HOST: db:3306
  28. WORDPRESS_DB_USER: wordpress
  29. WORDPRESS_DB_PASSWORD: wordpress
  30. volumes:
  31. wp_db:
  32. driver_opts:
  33. type: none
  34. device: ./wp-db
  35. o: bind
Add Comment
Please, Sign In to add comment