LinuxCommandLibrary

podman-pull

Pull container images from registries

TLDR

Pull image from Docker Hub

$ podman pull [image:tag]
copy
Pull from specific registry
$ podman pull [registry.example.com/image:tag]
copy
Pull all tags
$ podman pull --all-tags [image]
copy
Pull without TLS verification
$ podman pull --tls-verify=false [image]
copy

SYNOPSIS

podman pull [options] image

DESCRIPTION

podman pull downloads container images from registries. Supports Docker Hub, Quay.io, and private registries. Images are stored locally for creating containers.

PARAMETERS

--all-tags

Pull all tagged images.
--tls-verify bool
Verify TLS certificates.
--creds user:pass
Registry credentials.
--quiet
Suppress output.
--arch arch
Pull specific architecture.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community