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.

INSTALL

sudo apt install podman
sudo dnf install podman
sudo pacman -S podman
sudo apk add podman
sudo zypper install podman
brew install podman
nix profile install nixpkgs#podman

SEE ALSO

podman(1), podman-save(1)