Advertisement
smaction

Untitled

Apr 7th, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. version: '3.3'
  2.  
  3. services:
  4. wordpress:
  5. depends_on:
  6. - db
  7. image: wordpress:latest
  8. volumes:
  9. - ./wp-content:/var/www/html/wp-content
  10. ports:
  11. - "8000:80"
  12. restart: always
  13. environment:
  14. WORDPRESS_DB_HOST: db:3306
  15. WORDPRESS_DB_USER: wordpress
  16. WORDPRESS_DB_PASSWORD: w0rdcamp
  17.  
  18. db:
  19. image: mysql:5.7
  20. volumes:
  21. - db_data:/var/lib/mysql
  22. restart: always
  23. environment:
  24. MYSQL_ROOT_PASSWORD: secret
  25. MYSQL_DATABASE: wordpress
  26. MYSQL_USER: wordpress
  27. MYSQL_PASSWORD: w0rdcamp
  28. volumes:
  29. db_data:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement