podman-pull
Pull container images from registries
TLDR
Pull image from Docker Hub
$ podman pull [image:tag]
Pull from specific registry$ podman pull [registry.example.com/image:tag]
Pull all tags$ podman pull --all-tags [image]
Pull without TLS verification$ podman pull --tls-verify=false [image]
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
podman(1), podman-image(1)
