podman-image-pull
Download container images from registries
TLDR
Pull an image from Docker Hub
SYNOPSIS
podman image pull [options] image
DESCRIPTION
podman image pull downloads container images from registries to local storage. It supports multiple registries including Docker Hub, Quay.io, and private registries. Images are stored locally and can be used to create containers.
By default, Podman searches registries defined in registries.conf. Fully qualified image names (including registry) bypass registry search. The command supports pulling by tag, digest, or retrieving all tags at once.
PARAMETERS
--all-tags
Pull all tagged images from the repository--arch ARCH
Override the architecture of the image to pull--authfile path
Path to authentication file--creds [username[:password]]
Credentials for registry authentication--disable-content-trust
Skip image verification (default: true)--os OS
Override the OS of the image to pull--platform PLATFORM
Specify platform (os/arch) to pull--quiet, -q
Suppress output information--tls-verify
Require HTTPS and verify certificates (default: true)--variant VARIANT
Override the variant of the image
CAVEATS
Large images may take significant time and bandwidth to download. Pulling from insecure registries requires explicit --tls-verify=false flag. Authentication credentials on command line may be visible in process listings; use --authfile for better security.
HISTORY
Podman was developed by Red Hat as a daemonless container engine, first released in 2018. The image pull command mirrors Docker's functionality while adding rootless container support. Podman has become a standard container tool in RHEL/Fedora ecosystems.
SEE ALSO
podman(1), podman-pull(1), podman-images(1), podman-run(1), docker-pull(1)
