curl local Docker Registry to query images and tags

I’m running a local Docker Registry at 10.0.10.3:5000. To query images in the registry using curl, use:

❯ curl 10.0.10.3:5000/v2/_catalog
{"repositories":["adsb-dashboard"]}
❯ curl 10.0.10.3:5000/v2/adsb-dashboard/tags/list
{"name":"adsb-dashboard","tags":["0.0.1","latest"]}

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.