From 23da6ae57637e63a8aa5851d240d744488d89e3a Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Thu, 7 Jan 2021 07:05:20 -0700 Subject: [PATCH] docs(DOCKERFILE): fix username comment --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 6c4199d..456cccc 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -48,7 +48,7 @@ COPY webroot /usr/share/nginx/html/ # expose ports EXPOSE 80 443 -# clean-up permissions and run as nginx user +# clean-up permissions and run as www-docker user RUN chown -R ${USER}:${USER} /usr/share/nginx/html \ && find /usr/share/nginx/html -type d -exec chmod 775 {} \; \ && find /usr/share/nginx/html -type f -exec chmod 664 {} \; \