LinuxCommandLibrary

podman-image

Manage container images in Podman

TLDR

List images

$ podman image list
copy
Remove image
$ podman image rm [image]
copy
Pull image
$ podman image pull [image:tag]
copy
Inspect image
$ podman image inspect [image]
copy
Build image
$ podman image build -t [name] [path]
copy
Prune unused images
$ podman image prune
copy

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

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community