Support major/minor version tags for Docker images #640
beliven-alex-zongaro
started this conversation in
Ideas & Feature Requests
Replies: 2 comments 3 replies
|
If I am understanding your message correctly, this is already possible: https://serversideup.net/open-source/docker-php/docs/getting-started/choosing-an-image |
0 replies
|
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. |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

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?
All reactions