Guest User

Untitled

a guest
Apr 23rd, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. version: '3.3'
  2.  
  3. services:
  4. db:
  5. image: mysql:latest
  6. volumes:
  7. - dbdata:/var/lib/mysql
  8. restart: always
  9. ports:
  10. - "3306:3306"
  11. environment:
  12. - MYSQL_ALLOW_EMPTY_PASSWORD=true
  13. - MYSQL_DATABASE=wordpress
  14.  
  15. wordpress:
  16. depends_on:
  17. - db
  18. image: wordpress:latest
  19. ports:
  20. - "80:80"
  21. volumes:
  22. - ./blocks:/var/www/html/wp-content/plugins/blocks
  23. restart: always
  24. environment:
  25. WORDPRESS_DB_HOST: db:3306
  26. WORDPRESS_DB_USER: root
  27.  
  28. volumes:
  29. dbdata:
Add Comment
Please, Sign In to add comment