From b08bab5f386d7cebdc93b48c73db69e67e72c45d Mon Sep 17 00:00:00 2001 From: Johan van der Heide Date: Wed, 11 Jun 2025 10:59:32 +0200 Subject: [PATCH 1/5] Check with 8.4.7 --- .github/workflows/docker-image-php84-fpm-dev.yml | 1 + php84-fpm-dev/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker-image-php84-fpm-dev.yml b/.github/workflows/docker-image-php84-fpm-dev.yml index dac30e2..5c479ff 100644 --- a/.github/workflows/docker-image-php84-fpm-dev.yml +++ b/.github/workflows/docker-image-php84-fpm-dev.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - develop pull_request: branches: - main diff --git a/php84-fpm-dev/Dockerfile b/php84-fpm-dev/Dockerfile index 4117bd8..c94b923 100644 --- a/php84-fpm-dev/Dockerfile +++ b/php84-fpm-dev/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.4-fpm +FROM php:8.4.7-fpm LABEL maintainer="Johan van der Heide " LABEL org.opencontainers.image.source="https://github.com/jield-webdev/docker-repos" From b46964f55e53f664598b16cf413e9a2f61cdf4f7 Mon Sep 17 00:00:00 2001 From: Johan van der Heide Date: Wed, 11 Jun 2025 11:12:50 +0200 Subject: [PATCH 2/5] Check with 8.4.7 --- php84-fpm-dev/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php84-fpm-dev/Dockerfile b/php84-fpm-dev/Dockerfile index c94b923..4117bd8 100644 --- a/php84-fpm-dev/Dockerfile +++ b/php84-fpm-dev/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.4.7-fpm +FROM php:8.4-fpm LABEL maintainer="Johan van der Heide " LABEL org.opencontainers.image.source="https://github.com/jield-webdev/docker-repos" From 964b1cbd1c2204d852561dcc5849fb7c5d716c63 Mon Sep 17 00:00:00 2001 From: Johan van der Heide Date: Wed, 11 Jun 2025 13:12:11 +0200 Subject: [PATCH 3/5] Downgrade of xdebug --- php84-cli-dev/Dockerfile | 2 +- php84-fpm-dev/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/php84-cli-dev/Dockerfile b/php84-cli-dev/Dockerfile index 4747dc9..7ed8a3f 100644 --- a/php84-cli-dev/Dockerfile +++ b/php84-cli-dev/Dockerfile @@ -18,7 +18,7 @@ RUN echo 'xdebug.mode=coverage' >> /usr/local/etc/php/conf.d/docker-php-xdebug.i # Set working directory WORKDIR /var/www -RUN install-php-extensions gd redis xsl apcu igbinary intl gmp gettext zip opcache soap bcmath pdo_mysql xdebug +RUN install-php-extensions gd redis xsl apcu igbinary intl gmp gettext zip opcache soap bcmath pdo_mysql xdebug-3.4.2 RUN apt-get update && \ apt-get install -y --no-install-recommends zip unzip git \ No newline at end of file diff --git a/php84-fpm-dev/Dockerfile b/php84-fpm-dev/Dockerfile index 4117bd8..9732f1c 100644 --- a/php84-fpm-dev/Dockerfile +++ b/php84-fpm-dev/Dockerfile @@ -14,4 +14,4 @@ RUN echo 'date.timezone=Europe/Amsterdam' >> /usr/local/etc/php/conf.d/docker-ph # Set working directory WORKDIR /var/www -RUN install-php-extensions gd redis xsl apcu igbinary intl gmp gettext zip opcache soap bcmath pdo_mysql xdebug +RUN install-php-extensions gd redis xsl apcu igbinary intl gmp gettext zip opcache soap bcmath pdo_mysql xdebug-3.4.2 From 86644d30efe5af00ec4eabf4b3dc4f753bf0d0a3 Mon Sep 17 00:00:00 2001 From: Johan van der Heide Date: Fri, 13 Jun 2025 08:43:15 +0200 Subject: [PATCH 4/5] New version of Xdebug, no need to downpatch --- php84-cli-dev/Dockerfile | 2 +- php84-fpm-dev/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/php84-cli-dev/Dockerfile b/php84-cli-dev/Dockerfile index 7ed8a3f..4747dc9 100644 --- a/php84-cli-dev/Dockerfile +++ b/php84-cli-dev/Dockerfile @@ -18,7 +18,7 @@ RUN echo 'xdebug.mode=coverage' >> /usr/local/etc/php/conf.d/docker-php-xdebug.i # Set working directory WORKDIR /var/www -RUN install-php-extensions gd redis xsl apcu igbinary intl gmp gettext zip opcache soap bcmath pdo_mysql xdebug-3.4.2 +RUN install-php-extensions gd redis xsl apcu igbinary intl gmp gettext zip opcache soap bcmath pdo_mysql xdebug RUN apt-get update && \ apt-get install -y --no-install-recommends zip unzip git \ No newline at end of file diff --git a/php84-fpm-dev/Dockerfile b/php84-fpm-dev/Dockerfile index 9732f1c..4117bd8 100644 --- a/php84-fpm-dev/Dockerfile +++ b/php84-fpm-dev/Dockerfile @@ -14,4 +14,4 @@ RUN echo 'date.timezone=Europe/Amsterdam' >> /usr/local/etc/php/conf.d/docker-ph # Set working directory WORKDIR /var/www -RUN install-php-extensions gd redis xsl apcu igbinary intl gmp gettext zip opcache soap bcmath pdo_mysql xdebug-3.4.2 +RUN install-php-extensions gd redis xsl apcu igbinary intl gmp gettext zip opcache soap bcmath pdo_mysql xdebug From a8b9a926a193d0c9872f46db054ec52605f8ead2 Mon Sep 17 00:00:00 2001 From: Johan van der Heide Date: Fri, 4 Jul 2025 11:32:52 +0200 Subject: [PATCH 5/5] New PHP versions --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 80ab8d0..cdda7c0 100644 --- a/README.md +++ b/README.md @@ -22,10 +22,10 @@ single container app in Azure. PHP versions: -- 8.1.32 (only Azure container) -- 8.2.28 -- 8.3.22 -- 8.4.8 +- 8.1.33 (only Azure container) +- 8.2.29 +- 8.3.23 +- 8.4.10 Azure containers contain an SSH server and default Azure credentials. Johan van der Heide, Jield BV (johan.vanderheide@jield.nl)