Skip to content

Instantly share code, notes, and snippets.

@elvisciotti
Last active August 14, 2022 06:36
Show Gist options
  • Save elvisciotti/c97774d140a583b1691915f3e775777a to your computer and use it in GitHub Desktop.
Save elvisciotti/c97774d140a583b1691915f3e775777a to your computer and use it in GitHub Desktop.
Script to fetch docker tags for an image e.g. "dockertags busybox cli"
#!/bin/bash
if [ $# -lt 1 ]
then
cat << HELP
dockertags -- list all tags for a Docker image on a remote registry.
EXAMPLE:
- list all tags for ubuntu:
dockertags ubuntu
HELP
fi
image="$1"
tags=`wget -q https://registry.hub.docker.com/v1/repositories/${image}/tags -O - | sed -e 's/[][]//g' -e 's/"//g' -e 's/ //g' | tr '}' '\n' | awk -F: '{print $3}'`
if [ -n "$2" ]
then
tags=` echo "${tags}" | grep "$2" `
fi
echo "${tags}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment