Advertisement
Guest User

Untitled

a guest
Jan 31st, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. version: '2'
  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: wordpress
  11. MYSQL_DATABASE: wordpress
  12. MYSQL_USER: wordpress
  13. MYSQL_PASSWORD: wordpress
  14.  
  15. wordpress:
  16. depends_on:
  17. - db
  18. image: wordpress:latest
  19. ports:
  20. - "9000:80"
  21. restart: always
  22. environment:
  23. WORDPRESS_DB_HOST: db:3306
  24. WORDPRESS_DB_PASSWORD: wordpress
  25. volumes:
  26. - ./feedcomet-wordpress-plugin:/var/www/html/wp-content/plugins/feedcomet-wordpress-plugin
  27.  
  28. volumes:
  29. db_data:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement