podman-images
List locally stored container images
TLDR
List all images
$ podman images
List with digests$ podman images --digests
Filter images$ podman images --filter [reference=nginx*]
Show image IDs only$ podman images -q
Show all including intermediate$ podman images -a
SYNOPSIS
podman images [options] [repository[:tag]]
DESCRIPTION
podman images lists container images stored locally. It shows repository, tag, image ID, creation date, and size for each image.
PARAMETERS
-a, --all
Show all images.-q, --quiet
Only show IDs.--digests
Show digests.--filter, -f filter
Filter output.--format format
Go template format.--no-trunc
Don't truncate output.--sort field
Sort by field.
EXAMPLES
$ # List all images
podman images
# With full IDs
podman images --no-trunc
# Filter dangling images
podman images --filter dangling=true
# Custom format
podman images --format "{{.Repository}}:{{.Tag}} {{.Size}}"
# Filter by label
podman images --filter label=maintainer=me
# Sort by size
podman images --sort size
podman images
# With full IDs
podman images --no-trunc
# Filter dangling images
podman images --filter dangling=true
# Custom format
podman images --format "{{.Repository}}:{{.Tag}} {{.Size}}"
# Filter by label
podman images --filter label=maintainer=me
# Sort by size
podman images --sort size
FILTERS
$ dangling=true - Untagged images
reference=name - Match reference
before=image - Created before
since=image - Created after
label=key=value - Has label
reference=name - Match reference
before=image - Created before
since=image - Created after
label=key=value - Has label
CAVEATS
Size shown may be shared between images. Use --all to see intermediate layers.
HISTORY
podman images is part of Podman by Red Hat, providing Docker-compatible image listing.
SEE ALSO
podman-pull(1), podman-rmi(1), podman-image(1)
