Commit 8ee69068 by Kurt Yoder

Fix Docker image name parsing

Fixes #8357
parent 189824dd
...@@ -470,7 +470,7 @@ class DockerManager: ...@@ -470,7 +470,7 @@ class DockerManager:
def get_split_image_tag(self, image): def get_split_image_tag(self, image):
if '/' in image: if '/' in image:
image = image.split('/')[1] image = image.split('/')[-1]
tag = None tag = None
if image.find(':') > 0: if image.find(':') > 0:
return image.split(':') 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