Skip to content

Instantly share code, notes, and snippets.

@KoenDG
Created February 25, 2019 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KoenDG/bad6f320278b8ff809f54ca15a583532 to your computer and use it in GitHub Desktop.
Save KoenDG/bad6f320278b8ff809f54ca15a583532 to your computer and use it in GitHub Desktop.
Getting all docker hub tags for an image. Debian example
wget -q https://registry.hub.docker.com/v1/repositories/debian/tags -O - | sed -e 's/[][]//g' -e 's/"//g' -e 's/ //g' | tr '}' '\n' | awk -F: '{print $3}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment