Guest User

Untitled

a guest
Apr 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. version: '3.1'
  2.  
  3. services:
  4.  
  5. wordpress:
  6. image: wordpress
  7. ports:
  8. - 8888:80
  9. environment:
  10. WORDPRESS_DB_PASSWORD: example
  11. ABSPATH: /usr/src/wordpress/
  12. volumes:
  13. - wordpress:/var/www/html
  14. - ./wp-content/:/var/www/html/wp-content/
  15.  
  16. mysql:
  17. image: mysql:5.7
  18. ports:
  19. - 33066:3306
  20. environment:
  21. MYSQL_ROOT_PASSWORD: example
  22. MYSQL_DATABASE: wordpress_test
  23.  
  24. wordpress_phpunit:
  25. image: chriszarate/wordpress-phpunit
  26. environment:
  27. PHPUNIT_DB_HOST: mysql
  28. volumes:
  29. - .:/app
  30. - testsuite:/tmp
  31.  
  32. composer:
  33. image: composer
  34. volumes:
  35. - .:/app
  36.  
  37. volumes:
  38. testsuite:
  39. wordpress:
Add Comment
Please, Sign In to add comment