Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.7k views
in Technique[技术] by (71.8m points)

python - Iam tagging an image, after pulling it from Dockerhub

Iam tagging an image, after pulling it from Dockerhub. the tag here takes the original image tag. so my Question is how to add the word (local_) before the tag.

def tag_images(images, image_names):
print('====Tagging Images====')

for image, image_name in zip(images, image_names):
    iname, itag = get_name_and_tag(image_name)
    image.tag(repository=f'{REGISTRY_IP}:{REGISTRY_PORT}/{iname}',
              tag=itag)
    print(
        f'Successfully Tagged: {iname}:local_{itag} as {REGISTRY_IP}:{REGISTRY_PORT}/{iname}:local_{itag}')

print(f'====Tagged {len(images)} Images====')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

@Maxm Answer:

image.tag(repository=f'{REGISTRY_IP}:{REGISTRY_PORT}/{iname}', tag="local_"+itag)

and it works


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...