LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

docker-pull

download container images from registries

TLDR

Pull an image
$ docker pull [image]
copy
Pull specific tag
$ docker pull [image]:[tag]
copy
Pull all tags
$ docker pull -a [image]
copy
Pull from private registry
$ docker pull [registry.example.com/image]:[tag]
copy
Pull by digest
$ docker pull [image]@sha256:[digest]
copy
Pull specific platform
$ docker pull --platform linux/arm64 [image]
copy

SYNOPSIS

docker pull [options] name[:tag|@digest]

DESCRIPTION

docker pull downloads an image from a registry. Pulls from Docker Hub by default. If no tag is specified, pulls the latest tag. Images are downloaded in layers, and Docker caches these layers to optimize subsequent pulls. Supports multi-platform images with automatic platform detection.

PARAMETERS

-a, --all-tags

Download all tagged images in the repository.
--disable-content-trust
Skip image verification.
--platform string
Set platform (e.g., linux/amd64, linux/arm64).
-q, --quiet
Suppress verbose output.

INSTALL

sudo apt install docker-cli
copy
sudo dnf install docker-cli
copy
sudo pacman -S docker
copy
sudo apk add docker-cli
copy
sudo zypper install docker
copy
brew install docker
copy
nix profile install nixpkgs#docker
copy

SEE ALSO

Braincup
Open source brain training for math, memory and focus
Braincup mini-games
41 mini-games · Apache-2.0
No ads · No tracking
Play in browser
Download Braincup on the App StoreGet Braincup on Google PlayGet Braincup on F-Droid
276 stars
From the maker of Linux Command Library
Copied to clipboard
Braincup
Open source brain training for math, memory and focus. 41 mini-games, from mental arithmetic to Sudoku, N-Back and Solo Chess.
Apache-2.0 licensed · No ads · No tracking · No account
From the maker of Linux Command Library
Download Braincup on the App StoreGet Braincup on Google PlayGet Braincup on F-Droid