Skip to content

Commit 497a52d

Browse files
author
Radoslaw Ziemniewicz
committed
Merge branch 'master' of github.com:verbanent/eloquent-binary-uuid
2 parents 63d3d4b + 3904088 commit 497a52d

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
FROM php:fpm-buster
2+
RUN pecl install xdebug && docker-php-ext-enable xdebug

docker-compose.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: "3.3"
2+
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

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
xdebug.mode=coverage

0 commit comments

Comments
 (0)