diff --git a/dockerfiles/tasks/php/Dockerfile-7.1 b/dockerfiles/tasks/php/Dockerfile-7.1 index 63cf5ca..a36271f 100644 --- a/dockerfiles/tasks/php/Dockerfile-7.1 +++ b/dockerfiles/tasks/php/Dockerfile-7.1 @@ -22,6 +22,6 @@ RUN apt-get update && apt-get install -y software-properties-common python-softw && rm /usr/bin/php && ln -s /usr/bin/php7.1 /usr/bin/php \ && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* -COPY ./docker-php-fpm.conf /etc/php/7.1fpm/pool.d/www.conf +COPY ./docker-php-fpm.conf /etc/php/7.1/fpm/pool.d/www.conf CMD ["/usr/sbin/php-fpm7.1", "-F"] diff --git a/dockerfiles/tasks/php/Dockerfile-7.2 b/dockerfiles/tasks/php/Dockerfile-7.2 index b140d93..b8a9c40 100644 --- a/dockerfiles/tasks/php/Dockerfile-7.2 +++ b/dockerfiles/tasks/php/Dockerfile-7.2 @@ -21,9 +21,10 @@ RUN apt-get update && apt-get install -y software-properties-common python-softw \ && apt-cache pkgnames | grep php7.2 \ && rm /usr/bin/php && ln -s /usr/bin/php7.2 /usr/bin/php \ + && ln -s /usr/sbin/php-fpm7.2 /usr/sbin/php-fpm && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* -COPY ./docker-php-fpm.conf /etc/php/7.2fpm/pool.d/www.conf +COPY ./docker-php-fpm.conf /etc/php/7.2/fpm/pool.d/www.conf CMD ["/usr/sbin/php-fpm7.2", "-F"]