Skip to content

Commit

Permalink
fix(containers/wordpress) correct value for autostart
Browse files Browse the repository at this point in the history
  • Loading branch information
lucatume committed Dec 4, 2020
1 parent 4275813 commit f57e89f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion containers/wordpress/Dockerfile.debug
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr
RUN install-php-extensions xdebug-2.9.8 || docker-php-ext-enable xdebug.so
# Configure XDebug to autostart on all requests, use the version 2 configuration format.
RUN echo 'xdebug.remote_enable=1\n\
xdebug.remote_autostart=\n' \
xdebug.remote_autostart=1\n' \
>> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
# Make the XDebug configuration file world-read/writeable as the user updating it might not be a sudo-er.
RUN chmod a+rw /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
Expand Down

0 comments on commit f57e89f

Please sign in to comment.