Any API or Web UI project to manage a Docker private registry?

前端 未结 6 872
小蘑菇
小蘑菇 2021-01-30 17:47

I can\'t find how to manage images in a private registry. I can push or pull an image because i know the id but how to get the list of pushed images ?

Take for example

6条回答
  •  孤城傲影
    2021-01-30 18:05

    Are there any open source projects to manage this ?

    There is a containerized web application that provides administration of one-to-many private registries. Its name is Docker Registry UI and it is FOSS.

    The source is on Github and you can run it in a container like so:

    docker run -p 8080:8080 -v my_data_dir:/var/lib/h2/ atcol/docker-registry-ui

    Disclaimer: I wrote the web-app as I could not find one myself. I believe this answers your question (as quoted).

提交回复
热议问题