From 10bc0b45a1606c332642688c893df35992987f10 Mon Sep 17 00:00:00 2001 From: hide_d Date: Sun, 2 Jul 2023 18:00:46 +0000 Subject: [PATCH] xdebug trigger --- hidche/app/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hidche/app/Dockerfile b/hidche/app/Dockerfile index 0b5309e..91a96cd 100644 --- a/hidche/app/Dockerfile +++ b/hidche/app/Dockerfile @@ -45,6 +45,8 @@ RUN if [ "$XDEBUG" != "0" ]; then \ echo "[xdebug]"; \ echo "xdebug.mode=profile"; \ echo "xdebug.profiler_append=1"; \ + echo "xdebug.start_with_request=trigger"; \ + echo "xdebug.trigger_value=XDEBUGPROFILE"; \ echo 'xdebug.output_dir="/var/www/html/sam/d_log"'; \ } >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini; \ fi;