Docker Repository vs Docker Registry
Last updated
Last updated
Docker registry is a service that is storing your docker images.
Docker registry could be hosted by a third party, as public or private registry, like one of the following registries:
,
,
,
or you can host the docker registry by yourself (see for more details).
Docker repository is a collection of different docker images with same name, that have different tags.
Tag is alphanumeric identifier of the image within a repository.
For example see . There are many different tags for the official python image, these tags are all members of the official python repository on the Docker Hub. Docker Hub is a Docker Registry hosted by Docker.