Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. version: '3'
  2. services:
  3. php7:
  4. image: netpaygroup/centos7
  5. volumes:
  6. - c:/wamp/www/:/var/www/mount/:cached
  7. - ./nginx.conf:/etc/nginx/nginx.conf:cached
  8. - ./fastcgi_params:/etc/nginx/fastcgi_params:cached
  9. - ./www.conf:/etc/php-fpm.d/www.conf:cached
  10. - ./php.ini:/etc/php.ini:cached
  11. - ./main.cf:/etc/postfix/main.cf:cached
  12. - ./xdebug.ini:/etc/php.d/xdebug.ini:cached
  13. environment:
  14. - APP_ENV=docker
  15. - XDEBUG_CONFIG=idekey=PHPSTORM
  16. - PHP_IDE_CONFIG=serverName=server.api
  17. ports:
  18. - 80:80
  19. #command: bash -c "php-fpm && nginx -g 'daemon off;'"
  20. command: bash -c "nginx && php-fpm -F"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement