Fix version detection

This commit is contained in:
Pascal Vizeli 2020-04-21 15:32:20 +00:00
parent c2cfc0d3d4
commit 5d0d34a4af

View File

@ -97,7 +97,7 @@ class DockerSupervisor(DockerInterface, CoreSysAttributes):
start_tag = tag.partition(":")[2] or "latest"
# If version tag
if start_tag.isdigit():
if start_tag != "latest":
continue
docker_image.tag(start_image, start_tag)