0 votes
in Continuous Deployment by

Q. What’s the difference between a repository and a registry?

What’s the difference between a repository and a registry?

1 Answer

0 votes
by
  • Docker registry is a service for hosting and distributing images (the default one is the Docker Hub).
  • Docker repository is a collection of related Docker images (the same name but with different tags).
...