Docker Docker Hub
Where the images you docker pull come from, and how to judge whether one is trustworthy.
Registry and naming
Docker Hub is Docker’s cloud image registry (a central store of images, much like npm is for Node packages). Each image lives in a repository, and tags within a repo distinguish versions. Full naming format::tag equals :latest; avoid latest in Dockerfiles and production (see Choosing images).
Three trust tiers
Not every image is trustworthy. Look at three tiers:
Steps: check the path format (user prefix or not), confirm the badge on the Hub page, then look at download count and update frequency.
Public vs private
Login, push, pull
~/.docker/config.json.
Pull rate limits (as of 2026-06)
Next
- Docker CLI commands: full usage of pull / push / images.
- Choosing a prebuilt image: trust tiers and Python version variants.