podman-image-load
Load container images from tar archives
TLDR
Load image from archive
$ podman image load -i [image.tar]
Load from stdin$ cat [image.tar] | podman image load
Load with quiet output$ podman image load -q -i [image.tar]
SYNOPSIS
podman image load [options]
DESCRIPTION
podman image load loads images from tar archives created by podman save or docker save. Restores images including all layers and metadata. Useful for transferring images between systems.
PARAMETERS
-i, --input file
Read from archive file.-q, --quiet
Suppress output.
SEE ALSO
podman(1), podman-save(1)
