Advertisement
Guest User

Untitled

a guest
Sep 9th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 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. build: .
  23. command: php -S 0.0.0.0:80 -t /public/public
  24. volumes:
  25. - .:/public/
  26. environment:
  27. WORDPRESS_DB_HOST: db:3306
  28. WORDPRESS_DB_PASSWORD: wordpress
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement