added a whale icon with a view link

This commit is contained in:
Lachee 2025-05-16 17:17:47 +10:00
parent 19d9030c3c
commit 8bcfd5d209
No known key found for this signature in database
GPG Key ID: F1694B0D3BCBCD55

View File

@ -84,14 +84,12 @@ def get_private_registry_tags(registry, repository):
def format_tag(registry, repository, platform, tag ): def format_tag(registry, repository, platform, tag ):
# Get color for platform, default to blue if not found # Get color for platform, default to blue if not found
registryName = "Docker Hub"
url = f"https://hub.docker.com/r/{repository}/tags?name={tag}" url = f"https://hub.docker.com/r/{repository}/tags?name={tag}"
if registry: if registry:
registryName = registry url = f"https://{registry}/{repository}/tag/{tag}"
url = f"https://{registry}{repository}/tag/{tag}"
return f"[{registryName}]({url})" return f"[🐳 View]({url})"
def main(): def main():
@ -145,7 +143,7 @@ def main():
if tag: if tag:
markdown += format_tag(registry, repository, component, tag) + " |" markdown += format_tag(registry, repository, component, tag) + " |"
else: else:
markdown += "|" markdown += "N/A |"
markdown += "\n" markdown += "\n"
# Read existing README.md # Read existing README.md