Skip to content

Instantly share code, notes, and snippets.

@kowalcj0
Created February 28, 2018 10:27
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 kowalcj0/d60e2bc3a98cfecdf63ae5b463ddad17 to your computer and use it in GitHub Desktop.
Save kowalcj0/d60e2bc3a98cfecdf63ae5b463ddad17 to your computer and use it in GitHub Desktop.
list all the available image tags for a docker hub repo
wget -q https://registry.hub.docker.com/v1/repositories/circleci/python/tags -O - | sed -e 's/[][]//g' -e 's/"//g' -e 's/ //g' | tr '}' '\n' | awk -F: '{print $3}'
@kowalcj0
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment