From bb00e241f965904ff88c15771684fc88f54aaa0b Mon Sep 17 00:00:00 2001 From: Jonas Leder <jonas@jonasled.de> Date: Sat, 2 Jan 2021 11:43:54 +0100 Subject: [PATCH] added comments --- Dockerfile | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8c97914..1616c6d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,17 +23,22 @@ ENV PHP_EXTENSION_APCU=0 \ PHP_EXTENSION_PDO_MYSQL=0 \ PHP_EXTENSION_IGBINARY=0 \ PHP_EXTENSION_REDIS=0 \ - PHP_EXTENSION_SOAP=0 \ - APP_ENV=prod \ + PHP_EXTENSION_SOAP=0 + +# |-------------------------------------------------------------------------- +# | Enable production config files +# |-------------------------------------------------------------------------- +ENV APP_ENV=prod \ TEMPLATE_PHP_INI=production \ PHP_INI_ERROR_REPORTING=0 +# |-------------------------------------------------------------------------- +# | Run Apache as www-data for more security +# |-------------------------------------------------------------------------- +ENV APACHE_RUN_USER=www-data \ + APACHE_RUN_GROUP=www-data # |-------------------------------------------------------------------------- # | Add php files of website # |-------------------------------------------------------------------------- -COPY ./public /var/www/html - -# Change back Apache user and group to www-data -ENV APACHE_RUN_USER=www-data \ - APACHE_RUN_GROUP=www-data \ No newline at end of file +COPY ./public /var/www/html \ No newline at end of file -- GitLab