Advertisement
Guest User

Untitled

a guest
Apr 11th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4. db:
  5. image: mysql:5.7
  6. volumes:
  7. - db_data:/var/lib/mysql
  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:php7.1-apache
  18. ports:
  19. - "8000:80"
  20. environment:
  21. WORDPRESS_DB_HOST: db:3306
  22. WORDPRESS_DB_PASSWORD: wordpress
  23. volumes:
  24. db_data:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement