From 29353b10aa43ab91ae70a8102da0b9943a36b40f Mon Sep 17 00:00:00 2001 From: DavidWuest Date: Thu, 17 Jul 2025 10:13:03 +0200 Subject: [PATCH 1/4] Upgrade WordPress to 6.8.2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b18ce9c..8af062d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,7 +54,7 @@ WORKDIR /var/www/wp-content RUN chown -R nobody:nobody /var/www # WordPress -ENV WORDPRESS_VERSION 6.8.1 +ENV WORDPRESS_VERSION 6.8.2 ENV WORDPRESS_SHA1 52d5f05c96a9155f78ed84700264307e5dea14b4 RUN mkdir -p /usr/src From d8d16a2c89eba16bf103ee53ccd54be1bbb56c2b Mon Sep 17 00:00:00 2001 From: DavidWuest Date: Thu, 17 Jul 2025 10:26:50 +0200 Subject: [PATCH 2/4] Update WordPress SHA1 checksum to match version 6.8.2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8af062d..3c84fa8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -55,7 +55,7 @@ RUN chown -R nobody:nobody /var/www # WordPress ENV WORDPRESS_VERSION 6.8.2 -ENV WORDPRESS_SHA1 52d5f05c96a9155f78ed84700264307e5dea14b4 +ENV WORDPRESS_SHA1 03baad10b8f9a416a3e10b89010d811d9361e468 RUN mkdir -p /usr/src From 0ca0137bd27775636fafdbb0b476d50ca2fa5224 Mon Sep 17 00:00:00 2001 From: DavidWuest Date: Fri, 18 Jul 2025 09:18:43 +0200 Subject: [PATCH 3/4] Update WordPress version in README to 6.8.2 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8af599a..e507272 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Lightweight WordPress container with Nginx 1.26 & PHP-FPM 8.4 based on Alpine Linux. -_WordPress version currently installed:_ **6.8.1** +_WordPress version currently installed:_ **6.8.2** * Used in production for many sites, making it stable, tested and up-to-date * Optimized for 100 concurrent users From 3ac147914c96a8e9f369ffb46c35f7f7fb48d962 Mon Sep 17 00:00:00 2001 From: DavidWuest Date: Wed, 23 Jul 2025 10:40:31 +0200 Subject: [PATCH 4/4] Renaming the PHP-FPM and PHP configuration file with lower prioty to be able to overwite the config. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3c84fa8..0770b5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,8 +40,8 @@ RUN apk --no-cache add \ COPY config/nginx.conf /etc/nginx/nginx.conf # Configure PHP-FPM -COPY config/fpm-pool.conf /etc/php84/php-fpm.d/zzz_custom.conf -COPY config/php.ini /etc/php84/conf.d/zzz_custom.ini +COPY config/fpm-pool.conf /etc/php84/php-fpm.d/10_custom.conf +COPY config/php.ini /etc/php84/conf.d/10_custom.ini # Configure supervisord COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf