Commit 1e460934 by Michael DeHaan

Merge pull request #4927 from…

Merge pull request #4927 from intellectronica/intellectronica/docker-identify-private-repos-backport

Update cloud/docker: if the image name containes a repository, strip it.
parents afe631fe 8a39e0a6
......@@ -263,6 +263,8 @@ class DockerManager:
def get_split_image_tag(self, image):
if '/' in image:
image = image.split('/')[1]
tag = None
if image.find(':') > 0:
return image.split(':')
......
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