Guest User

Untitled

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