-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #165 from usabilla/task/document-policy
Document our Version Support Policy
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
docs/adr/0005-define-a-policy-for-supported-versions-and-upgrades.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# 5. Define a policy for supported versions and upgrades | ||
|
||
Date: 2021-01-25 | ||
|
||
## Status | ||
|
||
Accepted | ||
|
||
## Context | ||
|
||
Doubts have appeared as we decide which versions to drop from our pipeline and upgrade internal dependencies. In order to solve this we decided to be explicit with users on how we make those decisions. | ||
|
||
## Decision | ||
|
||
We have defined the following policy, to be mirrored in the README. | ||
|
||
- We will provide continuous new builds for images while their versions are actively supported. | ||
- PHP versions will be supported until no longer in [Security Support](https://php.net/supported-versions.php). | ||
- alpine versions will be supported until they reach [EOL](https://alpinelinux.org/releases). | ||
- nginx versions will be supported until they are classified as [legacy](https://nginx.org/en/download.html). | ||
- Past images will remain hosted on DockerHub as long as possible. | ||
- Once DockerHub limits are reached, images will become unavailable chronologically, unless they are still actively receiving new builds. | ||
- Packages focused on development will only be enabled in the `dev` image, and be updated in reasonable timeframes., | ||
- For example, Xdebug will only be shipped on `dev` versions and will be updated to the latest version as fast as possible. | ||
|
||
## Consequences | ||
|
||
This policy will guide our pipelines and is subject to changes depending on future changes in Github and DockerHub. |