We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bf28bc commit 7c49120Copy full SHA for 7c49120
nginx/Dockerfile-fpm-alpine-nginx
@@ -8,8 +8,10 @@ RUN chmod u+x /usr/local/bin/forego
8
RUN apk --update add nginx
9
10
# Add configuration files, Note: nginx runs under `www-data`
11
+# Note: chmod is a workaround for esotheric permissions issues on Alpine
12
COPY image-files/ /
-RUN chown -R www-data:www-data /var/lib/nginx/
13
+RUN chown -R www-data:www-data /var/lib/nginx/ \
14
+ && chmod 777 /var/lib/nginx/tmp/client_body/
15
16
# forward request and error logs to docker log collector
17
RUN ln -sf /dev/stdout /var/log/nginx/access.log \
0 commit comments