LinuxCommandLibrary

docker-pull

Download Docker images from a registry.

TLDR

Download a specific Docker image

$ docker pull [image]:[tag]
copy


Download a specific Docker image in quiet mode
$ docker pull --quiet [image]:[tag]
copy


Download all tags of a specific Docker image
$ docker pull --all-tags [image]
copy


Download a Docker images for a specific platform, e.g. linux/amd64
$ docker pull --platform [linux/amd64] [image]:[tag]
copy


Display help
$ docker pull --help
copy

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

docker(1)

Copied to clipboard