LinuxCommandLibrary

podman-image

Manage Docker images.

TLDR

List local Docker images

$ podman image ls
copy


Delete unused local Docker images
$ podman image prune
copy


Delete all unused images (not just those without a tag)
$ podman image prune --all
copy


Show the history of a local Docker image
$ podman image history [image]
copy

Copied to clipboard