-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add SharedTags information to "Supported tags" listing #1003
Merged
Conversation
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
Here's an example of how this changes Supported tags and respective
|
Applying the following diff to diff --git a/library/golang b/library/golang
index 1c07da3..3d1d006 100644
--- a/library/golang
+++ b/library/golang
@@ -5,7 +5,8 @@ Maintainers: Tianon Gravi <[email protected]> (@tianon),
Johan Euphrosine <[email protected]> (@proppy)
GitRepo: https://github.com/docker-library/golang.git
-Tags: 1.9.0-stretch, 1.9-stretch, 1-stretch, stretch, 1.9.0, 1.9, 1, latest
+Tags: 1.9.0-stretch, 1.9-stretch, 1-stretch, stretch
+SharedTags: 1.9.0, 1.9, 1, latest
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 94e49ca93c5bbf172e462cea8872c77f9bc08c10
Directory: 1.9/stretch
@@ -16,6 +17,7 @@ GitCommit: 94e49ca93c5bbf172e462cea8872c77f9bc08c10
Directory: 1.9/alpine3.6
Tags: 1.9.0-windowsservercore, 1.9-windowsservercore, 1-windowsservercore, windowsservercore
+SharedTags: 1.9.0, 1.9, 1, latest
Architectures: windows-amd64
GitCommit: f34c645c8402bd8f6b70f530545ad7845dfefbcc
Directory: 1.9/windows/windowsservercore
@@ -32,7 +34,8 @@ Architectures: amd64, arm32v7, i386, ppc64le, s390x
GitCommit: 94e49ca93c5bbf172e462cea8872c77f9bc08c10
Directory: 1.8/stretch
-Tags: 1.8.3-jessie, 1.8-jessie, 1.8.3, 1.8
+Tags: 1.8.3-jessie, 1.8-jessie
+SharedTags: 1.8.3, 1.8
Architectures: amd64, arm32v7, i386, ppc64le, s390x
GitCommit: 94e49ca93c5bbf172e462cea8872c77f9bc08c10
Directory: 1.8/jessie
@@ -53,6 +56,7 @@ GitCommit: 132cd70768e3bc269902e4c7b579203f66dc9f64
Directory: 1.8/onbuild
Tags: 1.8.3-windowsservercore, 1.8-windowsservercore
+SharedTags: 1.8.3, 1.8
Architectures: windows-amd64
GitCommit: 64b88dc3e9d83e71eafc000fed1f0d5e289b3e65
Directory: 1.8/windows/windowsservercore Creates the following header: Supported tags and respective
|
The header for Supported tags and respective
|
And the header for Supported tags and respective
|
(All other headers for images with no |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is based on what we spitballed over in docker-library/go-dockerlibrary#2 (comment) and created an actual
bashbrew cat
format for in docker-library/official-images#2289 (comment). 👍