+ xdebug ini
* autostart and enable + php 73 and 74 xDebug (termporary):
This commit is contained in:
@ -26,6 +26,13 @@ RUN if [ ${INSTALL_PEAR_MAIL} = true ]; then \
|
|||||||
;fi
|
;fi
|
||||||
|
|
||||||
###########################################################################
|
###########################################################################
|
||||||
|
# xDebug (termporary):
|
||||||
|
###########################################################################
|
||||||
|
|
||||||
|
# Copy xdebug configuration for remote debugging
|
||||||
|
COPY ./xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
|
||||||
|
|
||||||
|
###########################################################################
|
||||||
# Tune opts:
|
# Tune opts:
|
||||||
###########################################################################
|
###########################################################################
|
||||||
|
|
||||||
|
@ -26,6 +26,13 @@ RUN if [ ${INSTALL_PEAR_MAIL} = true ]; then \
|
|||||||
;fi
|
;fi
|
||||||
|
|
||||||
###########################################################################
|
###########################################################################
|
||||||
|
# xDebug (termporary):
|
||||||
|
###########################################################################
|
||||||
|
|
||||||
|
# Copy xdebug configuration for remote debugging
|
||||||
|
COPY ./xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
|
||||||
|
|
||||||
|
###########################################################################
|
||||||
# Tune opts:
|
# Tune opts:
|
||||||
###########################################################################
|
###########################################################################
|
||||||
|
|
||||||
|
25
dockerfiles/php-fpm/xdebug.ini
Normal file
25
dockerfiles/php-fpm/xdebug.ini
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
; NOTE: The actual debug.so extention is NOT SET HERE but rather (/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini)
|
||||||
|
|
||||||
|
;xdebug.remote_host=dockerhost
|
||||||
|
xdebug.remote_connect_back=1
|
||||||
|
xdebug.remote_port=9000
|
||||||
|
xdebug.idekey=PHPSTORM
|
||||||
|
|
||||||
|
xdebug.remote_autostart=1
|
||||||
|
xdebug.remote_enable=1
|
||||||
|
xdebug.cli_color=0
|
||||||
|
xdebug.profiler_enable=1
|
||||||
|
xdebug.profiler_enable_trigger=1
|
||||||
|
xdebug.profiler_output_dir=/tmp
|
||||||
|
|
||||||
|
xdebug.remote_handler=dbgp
|
||||||
|
xdebug.remote_mode=req
|
||||||
|
|
||||||
|
xdebug.var_display_max_children=-1
|
||||||
|
xdebug.var_display_max_data=-1
|
||||||
|
xdebug.var_display_max_depth=-1
|
||||||
|
|
||||||
|
xdebug.trace_enable_trigger=1
|
||||||
|
xdebug.trace_output_dir=/tmp
|
||||||
|
xdebug.trace_output_name="trace.%t"
|
||||||
|
|
@ -5,8 +5,8 @@ xdebug.remote_connect_back=1
|
|||||||
xdebug.remote_port=9000
|
xdebug.remote_port=9000
|
||||||
xdebug.idekey=PHPSTORM
|
xdebug.idekey=PHPSTORM
|
||||||
|
|
||||||
xdebug.remote_autostart=0
|
xdebug.remote_autostart=1
|
||||||
xdebug.remote_enable=0
|
xdebug.remote_enable=1
|
||||||
xdebug.cli_color=0
|
xdebug.cli_color=0
|
||||||
xdebug.profiler_enable=1
|
xdebug.profiler_enable=1
|
||||||
xdebug.profiler_enable_trigger=1
|
xdebug.profiler_enable_trigger=1
|
||||||
|
Reference in New Issue
Block a user