LinuxCommandLibrary

podman-load

Load container images from archives

TLDR

Load image from archive

$ podman load -i [image.tar]
copy
Load from stdin
$ cat [image.tar] | podman load
copy
Load with new name
$ podman load -i [archive.tar]
copy

SYNOPSIS

podman load [options]

DESCRIPTION

podman load restores container images from tar archives previously created by podman save or docker save. Unlike podman import, it preserves all image layers, metadata, tags, and build history.
The archive can be read from a file with -i or piped from stdin. This is the standard way to transfer complete images between systems without using a registry.

PARAMETERS

-i, --input FILE

Input archive file.
-q, --quiet
Suppress output.

CAVEATS

Use with podman save archives. OCI format compatible.

HISTORY

podman load provides image archive loading functionality.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community