We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 63d3d4b + 3904088 commit 497a52dCopy full SHA for 497a52d
Dockerfile
@@ -0,0 +1,2 @@
1
+FROM php:fpm-buster
2
+RUN pecl install xdebug && docker-php-ext-enable xdebug
docker-compose.yml
@@ -0,0 +1,9 @@
+version: "3.3"
+services:
3
+ php:
4
+ build: .
5
+ container_name: php
6
+ restart: unless-stopped
7
+ volumes:
8
+ - .:/var/www/html
9
+ - ./docker/xdebug-local.ini:/usr/local/etc/php/conf.d/xdebug-local.ini
docker/xdebug-local.ini
@@ -0,0 +1 @@
+xdebug.mode=coverage
0 commit comments