LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

podman-image-load

Load container images from tar archives

TLDR

Load image from archive
$ podman image load -i [image.tar]
copy
Load from stdin
$ cat [image.tar] | podman image load
copy
Load with quiet output
$ podman image load -q -i [image.tar]
copy

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
copy
sudo dnf install podman
copy
sudo pacman -S podman
copy
sudo apk add podman
copy
sudo zypper install podman
copy
brew install podman
copy
nix profile install nixpkgs#podman
copy

SEE ALSO

Copied to clipboard
Kai