Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Comment on lines 30 to 33
Expand Down
17 changes: 13 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,25 @@ Use either of the following commands:
| v5 | ❌ | ❌ | ❌ | ❌ | ❌ | ✅* |


> *) recommended version
### Pimcore image versions support
Comment on lines 46 to +47
Comment thread
bluvulture marked this conversation as resolved.
| 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)
Comment thread
bluvulture marked this conversation as resolved.

## 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)
```

Expand Down
Loading