← 返回命令列表

Linux command

podman-image-load 命令

文件

复制后可按需替换文件名、目录或参数。

常用示例

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]

说明

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.

参数

-i, --input _file_
Read from archive file.
-q, --quiet
Suppress output.

FAQ

What is the podman-image-load command used for?

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.

How do I run a basic podman-image-load example?

Run `podman image load -i [image.tar]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does -i, --input _file_ do in podman-image-load?

Read from archive file.