Skip to content

Commit 184cb80

Browse files
Fix: debug Dockerfile config file paths
1 parent 3794293 commit 184cb80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,15 @@ COPY ./config/php.ini $PHP_INI_DIR/conf.d/
9696

9797
# Setup config for supervisor nginx php-fpm crontabs
9898
RUN mkdir /etc/supervisor.d
99-
COPY ./config/supervisord-master.ini /etc/supervisor.d/
99+
COPY ./config/supervisord-master.ini /etc/supervisor.d/master.ini
100100
COPY ./config/supervisord.conf /etc/
101101

102102
RUN mkdir /var/log/supervisor/
103103
RUN touch /var/log/supervisor/supervisord.log
104104
RUN chown -R www-data:www-data /var/log/supervisor/
105105

106-
COPY ./config/nginx-default.conf /etc/nginx/conf.d
107-
COPY ./config/nginx.conf /etc/nginx/
106+
COPY ./config/nginx-default.conf /etc/nginx/conf.d/default.conf
107+
COPY ./config/nginx.conf /etc/nginx/nginx.conf
108108

109109
COPY ./config/php-fpm.conf /usr/local/etc/php-fpm.conf.d/www.conf
110110
COPY ./config/php-fpm.conf /usr/local/etc/php-fpm.d/www.conf

0 commit comments

Comments
 (0)