Starting from v 0.7.0 of a private registry you can:
$ curl -X GET http://localhost:5000/v1/search?q=postgresql
and you will get json payload:
{"num_results": 1, "query": "postgresql", "results": [{"description": "", "name": "library/postgresql"}]}
To get more information on how I started my registry:
docker run \ -e SETTINGS_FLAVOR=local \ -e STORAGE_PATH=/registry \ -e SEARCH_BACKEND=sqlalchemy \ -e LOGLEVEL=DEBUG \ -p 5000:5000 \ registry
faide Jun 17 '14 at 19:51 2014-06-17 19:51
source share