skip to Main Content

Should we log in to the docker hub to build our own private Docker Registry?

I have no idea about that, does anyone have any good documentation for building a docker registry? I am so confused.
what should I know for building a docker registry?( I am familier with docker)

2

Answers


    • Images are stored in collections, known as a repository
    • A registry is a storage and content delivery system, holding named Docker images, available in different tagged versions. A registry instance may contain several repositories

    E.g.: DockerHub is a hosted Registry. Documentation concerning deploying a registry here

    Login or Signup to reply.
  1. Do you want a private registry or a private repository? For a private registry you have to install a registry application like Harbor or Docker Registry on your server (not Docker Hub), for a private repository you have to create an account on Docker Hub and then login. A free account lets you create just one private repository (tipically used to push several versions or "tags" of one application) and many public repository, however paid accounts are also available.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search