Skip to content

Commit

Permalink
fit generate_tags to disable dockerhub
Browse files Browse the repository at this point in the history
  • Loading branch information
adeepn committed Sep 25, 2024
1 parent b34ccd3 commit d4eb1fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/generate_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ def main():
for tag in tags_to_push:
if GHCR in args.registry:
full_tags += [f"ghcr.io/{image_name}:{tag}"]
if DOCKERHUB in args.registry:
full_tags += [f"docker.io/{image_name}:{tag}"]
#if DOCKERHUB in args.registry:
# full_tags += [f"docker.io/{image_name}:{tag}"]
if CRJETHOME in args.registry:
full_tags += [f"cr.jethome.work/{image_name}:{tag}"]
print(f"tags={','.join(full_tags)}")
Expand Down

0 comments on commit d4eb1fe

Please sign in to comment.