Kaydet (Commit) cc455d7f authored tarafından Joffrey F's avatar Joffrey F

Fix DockerClient pull bug when pulling image by digest

Signed-off-by: 's avatarJoffrey F <joffrey@docker.com>
üst ba0e5332
......@@ -314,7 +314,9 @@ class ImageCollection(Collection):
self.client.api.pull(repository, tag=tag, **kwargs)
if tag:
return self.get('{0}:{1}'.format(repository, tag))
return self.get('{0}{2}{1}'.format(
repository, tag, '@' if tag.startswith('sha256:') else ':'
))
return self.list(repository)
def push(self, repository, tag=None, **kwargs):
......
......@@ -74,6 +74,15 @@ class ImageCollectionTest(BaseIntegrationTest):
image = client.images.pull('alpine', tag='3.3')
assert 'alpine:3.3' in image.attrs['RepoTags']
def test_pull_with_sha(self):
image_ref = (
'hello-world@sha256:083de497cff944f969d8499ab94f07134c50bcf5e6b95'
'59b27182d3fa80ce3f7'
)
client = docker.from_env(version=TEST_API_VERSION)
image = client.images.pull(image_ref)
assert image_ref in image.attrs['RepoDigests']
def test_pull_multiple(self):
client = docker.from_env(version=TEST_API_VERSION)
images = client.images.pull('hello-world')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment