You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
688 B
22 lines
688 B
2 months ago
|
version: '2'
|
||
|
services:
|
||
|
php-fpm:
|
||
|
image: repo.dnurse.cn/library/nginx-php-7.4-xdebug:v1.2
|
||
|
ports:
|
||
|
- '80:80'
|
||
|
env_file:
|
||
|
- .env
|
||
|
environment:
|
||
|
SKIP_COMPOSER: 'true'
|
||
|
SKIP_CHOWN: 'true'
|
||
|
ERRORS: '1'
|
||
|
ENABLE_XDEBUG: '1'
|
||
|
volumes:
|
||
|
- ./dev/conf/supervisor/nginx.conf:/etc/supervisor/conf.d/nginx.conf
|
||
|
- ./dev/conf/supervisor/php-fpm.conf:/etc/supervisor/conf.d/php-fpm.conf
|
||
|
# - ./dev/conf/nginx:/etc/nginx/sites-available
|
||
|
- ./dev/conf/template:/var/www/template
|
||
|
- ./src:/var/www/html
|
||
|
# - ./dev/conf/nginx.conf:/etc/nginx/nginx.conf
|
||
|
- ./dev/conf/php/opcache.ini:/usr/local/etc/php/conf.d/opcache.ini
|