Guest User

Untitled

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