Home > database >  What software is for hosting my own private OCI/docker container/image registry or repository?
What software is for hosting my own private OCI/docker container/image registry or repository?

Time:09-21

Purely hypothetical question -- if I want to host my own private OCI/docker container repository, where I can push and pull over the network, what software would I use?

Do I also need another software to serve the website to access and manage packages visually?

CodePudding user response:

Your first question about Docker registry options and not only?

Nexus Repository OSS is one of the best free sefl-hosted solutions, in my point of view at least. I e.g. run it on my home server as docker container. Apart from using it as Docker Registry for docker images (i.e. for pushing your locally built docker images, storing your base images and pulling them) you can use it to manage your artifacts (i.e. store binaries of your built source code, pull them etc.).

Do I also need another software to serve the website to access and manage packages visually?

No! It has also a user Interface where you have a possibility to browse, view, edit etc.

  • Related