Advertisement
Guest User

Untitled

a guest
Nov 28th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. version: '2'
  2.  
  3. services:
  4. db:
  5. image: mysql:5.7
  6. ports:
  7. - "3306:3306"
  8. volumes:
  9. - "./.data/db:/var/lib/mysql"
  10. restart: always
  11. environment:
  12. MYSQL_ROOT_PASSWORD: wordpress
  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. - ./Wordpress/:/var/www/html
  23. - ./php-uploads.ini:/usr/local/etc/php/conf.d/php-uploads.ini
  24. links:
  25. - db
  26. ports:
  27. - "80:80"
  28. restart: always
  29. environment:
  30. WORDPRESS_DB_HOST: db:3306
  31. WORDPRESS_DB_PASSWORD: wordpress
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement