podman-image
Manage container images in Podman
TLDR
List images
$ podman image list
Remove image$ podman image rm [image]
Pull image$ podman image pull [image:tag]
Inspect image$ podman image inspect [image]
Build image$ podman image build -t [name] [path]
Prune unused images$ podman image prune
SYNOPSIS
podman image command [options]
DESCRIPTION
podman image manages container images. Subcommand for Podman's image operations. Supports pulling, building, tagging, and removing images. Compatible with OCI and Docker image formats.
PARAMETERS
list
List images.rm image
Remove image.pull image
Pull image from registry.push image
Push image to registry.build
Build image from Dockerfile.inspect image
Show image details.prune
Remove unused images.tag src dest
Tag an image.
SEE ALSO
podman(1), podman-pull(1)
