We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 178d7e1 commit 94c6240Copy full SHA for 94c6240
1 file changed
php-fpm/Dockerfile-56
@@ -55,8 +55,11 @@ RUN if [ ${INSTALL_SOAP} = true ]; then \
55
ARG INSTALL_XDEBUG=false
56
RUN if [ ${INSTALL_XDEBUG} = true ]; then \
57
# Install the xdebug extension
58
- pecl install xdebug && \
59
- docker-php-ext-enable xdebug \
+ # pecl install xdebug && docker-php-ext-enable xdebug \
+ # workaround for https://github.com/docker-library/php/issues/133
60
+ # - Xdebug breaks on access to class static property
61
+ apt-get install -y php5-xdebug && \
62
+ echo "zend_extension=/usr/lib/php5/20131226/xdebug.so" > /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
63
;fi
64
65
# Copy xdebug configration for remote debugging
0 commit comments