Moving php-fpm xdebug config to proper location
This commit is contained in:
parent
f5478cfef5
commit
714902d12a
|
@ -60,6 +60,9 @@ RUN if [ ${INSTALL_XDEBUG} = true ]; then \
|
|||
docker-php-ext-enable xdebug \
|
||||
;fi
|
||||
|
||||
# Copy xdebug configration for remote debugging
|
||||
COPY ./xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
|
||||
|
||||
#####################################
|
||||
# PHP REDIS EXTENSION FOR PHP 7
|
||||
#####################################
|
||||
|
@ -72,9 +75,6 @@ RUN if [ ${INSTALL_PHPREDIS} = true ]; then \
|
|||
&& docker-php-ext-enable redis \
|
||||
;fi
|
||||
|
||||
# Copy xdebug configration for remote debugging
|
||||
COPY ./xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
|
||||
|
||||
#####################################
|
||||
# MongoDB:
|
||||
#####################################
|
||||
|
|
|
@ -48,6 +48,9 @@ RUN if [ ${INSTALL_XDEBUG} = true ]; then \
|
|||
docker-php-ext-enable xdebug \
|
||||
;fi
|
||||
|
||||
# Copy xdebug configration for remote debugging
|
||||
COPY ./xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
|
||||
|
||||
#####################################
|
||||
# PHP REDIS EXTENSION FOR PHP 7
|
||||
#####################################
|
||||
|
@ -60,9 +63,6 @@ RUN if [ ${INSTALL_PHPREDIS} = true ]; then \
|
|||
&& docker-php-ext-enable redis \
|
||||
;fi
|
||||
|
||||
# Copy xdebug configration for remote debugging
|
||||
COPY ./xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
|
||||
|
||||
#####################################
|
||||
# MongoDB:
|
||||
#####################################
|
||||
|
|
Loading…
Reference in New Issue