Advertisement
Guest User

Untitled

a guest
Jan 25th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. php:
  2. image: php:7.1.1-fpm
  3. volumes:
  4. - ./code:/code
  5. links:
  6. - mysql
  7. composer:
  8. image: composer/composer:php7
  9. volumes:
  10. - ./code/blog:/app
  11. mysql:
  12. image: mysql:8.0.0
  13. volumes:
  14. - ./datadir:/var/lib/mysql
  15. command: mysqld --innodb-buffer-pool-size=20M
  16. environment:
  17. - "MYSQL_DATABASE=docker_laravel"
  18. - "MYSQL_USER=beatwade"
  19. - "MYSQL_PASSWORD=1989530"
  20. - "MYSQL_ROOT_PASSWORD=1989530"
  21. ports:
  22. - "3307:3306"
  23. openstry:
  24. image: openresty/openresty:trusty
  25. ports:
  26. - "81:80"
  27. volumes:
  28. - ./code:/code
  29. - ./site.conf:/usr/local/openresty/nginx/conf/nginx.conf
  30. links:
  31. - php
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement