I made a private registry,curl xx.xx.xx.xx:5000 is ok.
I push an image into docker private registry by doing:
docker push xx.xx.xx.xx:5000/centos
it return:
http://xx.xx.xx.xx:5000/v1/repositories/centos/tags/latest
the question is how to get all images from registry web or command whatever. I cant find any information from docker registry api. any one helps ? :)
Now from docker client you can simply search your private registry directly without using the HTTP APIs or any extra tools:
e.g. searching for centos image:
docker search localhost:5000/centos