Advertisement
Guest User

Untitled

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