mirror of
https://github.com/shadoll/php7-xdebug-vscode.git
synced 2026-08-28 03:27:42 +00:00
initial data
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
version: "3.7"
|
||||
|
||||
services:
|
||||
php:
|
||||
build: docker/php
|
||||
restart: always
|
||||
volumes:
|
||||
- ./docker/php/php.ini:/usr/local/etc/php/conf.d/php.ini
|
||||
- ./docker/php/xdebug.ini:/usr/local/etc/php/conf.d/xdebug.ini
|
||||
- ./app:/var/www/html
|
||||
|
||||
composer:
|
||||
image: composer
|
||||
volumes:
|
||||
- .:/app
|
||||
|
||||
nginx:
|
||||
image: nginx
|
||||
volumes:
|
||||
- ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf
|
||||
- ./app:/var/www/html
|
||||
ports:
|
||||
- 80:80
|
||||
restart: always
|
||||
depends_on:
|
||||
- php
|
||||
Reference in New Issue
Block a user