From c7db0d857065f8847e323351be2593064129b8c9 Mon Sep 17 00:00:00 2001 From: "nebojsa.ilic" Date: Mon, 8 Jun 2026 14:37:54 +0200 Subject: [PATCH 1/2] Version suported table --- .github/workflows/release.yml | 4 ---- README.md | 11 ++++++++++- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4c80642..66fefeb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,10 +28,6 @@ jobs: - ubuntu-22.04 - ubuntu-22.04-arm build: - - { tag: '1.x', php: '8.1', distro: bullseye, version-override: "v1-dev", latest-tag: false } - - { tag: '1.x', php: '8.2', distro: bullseye, version-override: "v1-dev", latest-tag: false } - - { tag: 'v1.6', php: '8.1', distro: bullseye, version-override: "", latest-tag: true } - - { tag: 'v1.6', php: '8.2', distro: bullseye, version-override: "", latest-tag: false } - { tag: 'v2.3', php: '8.2', distro: bullseye, version-override: "", latest-tag: false } - { tag: '2.x', php: '8.2', distro: bullseye, version-override: "v2-dev", latest-tag: false } - { tag: 'v3.8', php: '8.2', distro: bookworm, version-override: "", latest-tag: true } diff --git a/README.md b/README.md index 4e117ef..a1268e3 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,16 @@ Use either of the following commands: | v5 | ❌ | ❌ | ❌ | ❌ | ❌ | ✅* | -> *) recommended version +### Pimcore image versions support +| Image | Supported | +|-------|-----------| +| v1 | ❌ | +| v2 | ✅ | +| v3 | ✅ | +| v4 | ✅ | +| v5 | ✅ | + +We are basing our images on top of the official PHP and Debian images and providing support until EOL for the [PHP versions](https://www.php.net/supported-versions.php) and [Debian versions](https://wiki.debian.org/LTS) ## Examples From b1a69c4d45bf31b4e9dafa4c7ab3605af935e549 Mon Sep 17 00:00:00 2001 From: "nebojsa.ilic" Date: Mon, 8 Jun 2026 14:44:34 +0200 Subject: [PATCH 2/2] Version suported examples update --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a1268e3..38a0a5e 100644 --- a/README.md +++ b/README.md @@ -60,9 +60,9 @@ We are basing our images on top of the official PHP and Debian images and provid ### PHP images ```text php8.2-latest # always use the latest PHP 8.2 image -php8.2-v1 # always point to the latest minor version of v1 -php8.2-v1.0 # pin to specific image version, always using the latest bugfixes from PHP 8.2 -php8.2.5-v1.0 # pin to a specific PHP version & image version +php8.2-v2 # always point to the latest minor version of v2 +php8.2-v2.0 # pin to specific image version, always using the latest bugfixes from PHP 8.2 +php8.2.5-v2.0 # pin to a specific PHP version & image version php8.2-dev # development image (build from the default branch) ```