Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. version: '2'
  2. services:
  3. db:
  4. image: mysql:5.7
  5. volumes:
  6. - "./.data/db:/var/lib/mysql"
  7. restart: always
  8. environment:
  9. MYSQL_ROOT_PASSWORD: wordpress
  10. MYSQL_DATABASE: wordpress
  11. MYSQL_USER: wordpress
  12. MYSQL_PASSWORD: wordpress
  13.  
  14. wordpress:
  15. depends_on:
  16. - db
  17. image: wordpress:latest
  18. links:
  19. - db
  20. ports:
  21. - "8000:80"
  22. volumes:
  23. - ./app/wp-content/plugins:/var/www/html/wp-content/plugins
  24. - ./app/wp-content/themes:/var/www/html/wp-content/themes
  25. restart: always
  26. environment:
  27. WORDPRESS_DB_HOST: db:3306
  28. WORDPRESS_DB_PASSWORD: wordpress
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement