docker-pull - Man Page
Download an image from a registry
Examples (TL;DR)
- Download a specific Docker image:
docker pull image:tag
- Download a specific Docker image in quiet mode:
docker pull --quiet image:tag
- Download all tags of a specific Docker image:
docker pull --all-tags image
- Download a Docker images for a specific platform, e.g. linux/amd64:
docker pull --platform linux/amd64 image:tag
- Display help:
docker pull --help
Synopsis
docker pull [Options] NAME[:TAG|@DIGEST]
Description
Alias for docker image pull.
Options
-a, --all-tags[=false] Download all tagged images in the repository
--disable-content-trust[=true] Skip image verification
-h, --help[=false] help for pull
--platform="" Set platform if server is multi-platform capable
-q, --quiet[=false] Suppress verbose output
See Also
Info
Dec 2024 Docker Community Docker User Manuals