diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d27b4737..b59c7c33a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ * legacy images are replaced by new base images. see `epicmorg/debian` section. * added `nodejs18` * updated `jira8`, `bitbucket`, `vscode` + * updated `apache2` * `february, march` * new `nextcloud` images, updated `atlassian` images. * new `nodejs` iamges. diff --git a/linux/ecosystem/apache2/latest/Dockerfile b/linux/ecosystem/apache2/latest/Dockerfile index 1a4b54ac3..f9e5d6c65 100644 --- a/linux/ecosystem/apache2/latest/Dockerfile +++ b/linux/ecosystem/apache2/latest/Dockerfile @@ -105,6 +105,7 @@ HEALTHCHECK --interval=2m --timeout=3s CMD curl -f http://localhost:80/ || exit # Add image configuration and scripts COPY docker-entrypoint.sh /usr/bin/docker-entrypoint.sh RUN chmod 755 /usr/bin/docker-entrypoint.sh +RUN chown -Rf www-data:www-data /var/www #Final config VOLUME ["/var/www"] diff --git a/linux/ecosystem/apache2/php7.2/Dockerfile b/linux/ecosystem/apache2/php7.2/Dockerfile index b972a8e42..90b4e25b7 100644 --- a/linux/ecosystem/apache2/php7.2/Dockerfile +++ b/linux/ecosystem/apache2/php7.2/Dockerfile @@ -98,6 +98,7 @@ HEALTHCHECK --interval=2m --timeout=3s CMD curl -f http://localhost:80/ || exit # Add image configuration and scripts COPY docker-entrypoint.sh /usr/bin/docker-entrypoint.sh RUN chmod 755 /usr/bin/docker-entrypoint.sh +RUN chown -Rf www-data:www-data /var/www #Final config VOLUME ["/var/www"] diff --git a/linux/ecosystem/apache2/php7.3/Dockerfile b/linux/ecosystem/apache2/php7.3/Dockerfile index 8c97f96f5..6f81482c4 100644 --- a/linux/ecosystem/apache2/php7.3/Dockerfile +++ b/linux/ecosystem/apache2/php7.3/Dockerfile @@ -98,6 +98,7 @@ HEALTHCHECK --interval=2m --timeout=3s CMD curl -f http://localhost:80/ || exit # Add image configuration and scripts COPY docker-entrypoint.sh /usr/bin/docker-entrypoint.sh RUN chmod 755 /usr/bin/docker-entrypoint.sh +RUN chown -Rf www-data:www-data /var/www #Final config VOLUME ["/var/www"] diff --git a/linux/ecosystem/apache2/php7.4/Dockerfile b/linux/ecosystem/apache2/php7.4/Dockerfile index 1a4b54ac3..f9e5d6c65 100644 --- a/linux/ecosystem/apache2/php7.4/Dockerfile +++ b/linux/ecosystem/apache2/php7.4/Dockerfile @@ -105,6 +105,7 @@ HEALTHCHECK --interval=2m --timeout=3s CMD curl -f http://localhost:80/ || exit # Add image configuration and scripts COPY docker-entrypoint.sh /usr/bin/docker-entrypoint.sh RUN chmod 755 /usr/bin/docker-entrypoint.sh +RUN chown -Rf www-data:www-data /var/www #Final config VOLUME ["/var/www"] diff --git a/linux/ecosystem/apache2/php8.0/Dockerfile b/linux/ecosystem/apache2/php8.0/Dockerfile index ec62bb1fb..3e75a00da 100644 --- a/linux/ecosystem/apache2/php8.0/Dockerfile +++ b/linux/ecosystem/apache2/php8.0/Dockerfile @@ -106,6 +106,7 @@ HEALTHCHECK --interval=2m --timeout=3s CMD curl -f http://localhost:80/ || exit # Add image configuration and scripts COPY docker-entrypoint.sh /usr/bin/docker-entrypoint.sh RUN chmod 755 /usr/bin/docker-entrypoint.sh +RUN chown -Rf www-data:www-data /var/www #Final config VOLUME ["/var/www"]