Guest User

Untitled

a guest
Mar 12th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. version: "3"
  2. services:
  3. nginx:
  4. image: harcerzyk66/m2-nginx
  5. volumes:
  6. - .:/var/www/magento
  7. network_mode: "host"
  8. php:
  9. image: harcerzyk66/m2-php
  10. volumes:
  11. - .:/var/www/magento
  12. environment:
  13. PHP_IDE_CONFIG: serverName=magento
  14. network_mode: "host"
  15. mysql:
  16. image: mysql:5.7
  17. environment:
  18. MYSQL_ROOT_PASSWORD: qwerty
  19. MYSQL_DATABASE: magento
  20. MYSQL_USER: magento
  21. MYSQL_PASSWORD: qwerty
  22. volumes:
  23. - mysqldata:/var/lib/mysql
  24. network_mode: "host"
  25. redis:
  26. image: redis:3.2
  27. network_mode: "host"
  28. volumes:
  29. mysqldata:
Add Comment
Please, Sign In to add comment