Advertisement
Guest User

Untitled

a guest
Sep 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 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. restart: always
  9. environment:
  10. MYSQL_ROOT_PASSWORD: somewordpress
  11. MYSQL_DATABASE: wordpress
  12. MYSQL_PASSWORD: wordpress
  13.  
  14. wordpress:
  15. depends_on:
  16. - db
  17. image: wordpress:latest
  18. ports:
  19. - "8000:80"
  20. restart: always
  21. environment:
  22. WORDPRESS_DB_HOST: db:3306
  23. WORDPRESS_DB_USER: wordpress
  24. WORDPRESS_DB_PASSWORD: wordpress
  25.  
  26. volumes:
  27. db_data:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement