Docker Registry API Calls
Reference: https://docs.docker.com/registry/spec/api/ API Examples against a local, private registry: List registry contents: curl –insecure -X GET https://dockerregistry.sab.local:5000/v2/_catalog Example: [abruce@c05 ~]$ curl –insecure -X GET https://dockerregistry.sab.local:5000/v2/_catalog {“repositories”:[“sab/aws-cli”,”sab/aws-helpers”,”sab/kubectl”,”sab/openshift-gnucobol”]} List tags for registered images: curl –insecure -X GET https://dockerregistry.sab.local:5000/v2/[image]/tags/list Example: [abruce@c05 ~]$ curl …