This repository was archived by the owner on Sep 12, 2018. It is now read-only.
Support GET /v1/repositories/library/(.*?)/tags #959
Merged
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.
I found that I was unable to pull a tagged image from the master golang_impl due to the Docker pull sending "library/" as a prefix to the repoName in the HTTP GET. Since the repoName unexpectedly included "library/", GetRepositoryTags was returning an empty JSON object, and the image could not be located. This resolves the problem by allowing the portion after "library/" to be passed to the existing handler as it expects. My client and server API versions at the time of the failure (and resultant fix) were as follows -
Client version: 1.3.2
Client API version: 1.15
Go version (client): go1.3.3
Git commit (client): 39fa2fa
OS/Arch (client): linux/amd64
Server version: 1.3.2
Server API version: 1.15
Go version (server): go1.3.3
Git commit (server): 39fa2fa