Support major/minor version tags for Docker images #640
Replies: 2 comments
-
|
If I am understanding your message correctly, this is already possible: https://serversideup.net/open-source/docker-php/docs/getting-started/choosing-an-image |
Beta Was this translation helpful? Give feedback.
-
|
Hi @jaydrogers, thanks for the clarification and the link. Using tags like What we’re looking for is the possibility to pin image major/minor GitHub versions, for example:
Let me know if I’m missing something. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
👉 Describe the problem
At the moment, image tags require either:
This makes it difficult to safely automate updates. Using latest may unintentionally upgrade across major versions (e.g. v4 → v5), potentially introducing breaking changes without notice.
👥 Problem evidence & reach
This affects any team that:
In CI/CD and infrastructure-as-code workflows, pinning only major (or major.minor) versions is a very common and recommended pattern.
🏆 How to solve this problem
Provide additional Docker tags that follow semantic versioning levels, for example:
This would allow users to choose the right balance between stability and automatic updates.
Detail 1 – Automation safety
Detail 2 – Upgrade control
🥰 Describe the "impact" on users?
Overall, this significantly improves reliability for long-running and production-grade setups.
💯 How do we validate the problem is solved?
Beta Was this translation helpful? Give feedback.
All reactions