diff --git a/Dockerfile b/Dockerfile index 9914414..2791c94 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM uqlibrary/alpine:3.12.3 ENV COMPOSER_VERSION=2.0.9 ENV PRESTISSIMO_VERSION=0.3.10 -ENV XDEBUG_VERSION=2.9.8 +ENV XDEBUG_VERSION=3.0.2 ENV IGBINARY_VERSION=3.2.1 ENV NEWRELIC_VERSION=9.16.0.295 ENV PHP_MEMCACHED_VERSION=3.1.5 diff --git a/fs/etc/php7/conf.d/xdebug.ini b/fs/etc/php7/conf.d/xdebug.ini index 53bd558..0b4c871 100644 --- a/fs/etc/php7/conf.d/xdebug.ini +++ b/fs/etc/php7/conf.d/xdebug.ini @@ -1,17 +1,12 @@ ; Enable xdebug extension module zend_extension=xdebug.so -xdebug.remote_autostart=1 -xdebug.remote_enable=1 +xdebug.mode=debug +xdebug.start_with_request=yes xdebug.remote_handler=dbgp -xdebug.remote_mode=req -xdebug.remote_host=dbgpproxy -xdebug.remote_port=9000 +xdebug.client_host=dbgpproxy +xdebug.client_port=9000 xdebug.idekey=PHPSTORM ; General xdebug.max_nesting_level=1000 -xdebug.auto_trace=off -xdebug.collect_includes=on -xdebug.collect_params=on -xdebug.collect_return=on