Merge pull request #2852 from awasilyev/check_tag
docker: fix failing in case of empty image tag
This commit is contained in:
commit
b804edfbe3
1 changed files with 2 additions and 0 deletions
|
@ -569,6 +569,8 @@ def get_split_image_tag(image):
|
|||
resource, tag = resource.split(':', 1)
|
||||
if registry:
|
||||
resource = '/'.join((registry, resource))
|
||||
if tag == "":
|
||||
tag = "latest"
|
||||
else:
|
||||
tag = "latest"
|
||||
resource = image
|
||||
|
|
Loading…
Reference in a new issue