āļø
Docker Hub & Registries
Sharing and distributing images
Step 1 of 3
What is a Registry?
A registry stores and distributes Docker images. Docker Hub is the default public registry. Private registries (AWS ECR, GCR, self-hosted) give you control.
bash
# Public registry:
docker pull nginx
# Private registry:
docker pull myregistry.com/myapp:latest