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..38a0a5e 100644 --- a/README.md +++ b/README.md @@ -44,16 +44,25 @@ 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 ### 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) ```