NAME 名称

podman-volume-import - Import tarball contents into an existing podman volume
podman-volume-import - 将 tarball 内容导入现有的 podman 卷

SYNOPSIS 概要

podman volume import volume [source]

DESCRIPTION 描述

podman volume import imports the contents of a tarball into the podman volume’s mount point. The contents of the volume is merged with the content of the tarball with the latter taking precedence. podman volume import can consume piped input when using - as source path.
podman volume import 将 tarball 的内容导入到 podman 卷的挂载点。卷的内容与 tarball 的内容合并,以后者为优先。podman volume import 可以在使用 - 作为源路径时消耗管道输入。

The given volume must already exist and is not created by podman volume import.
给定的卷必须已经存在,并且不是由 podman volume import 创建的。

Note: Following command is not supported by podman-remote.
注意:以下命令不受 podman-remote 支持。

--help --帮助 ¶

Print usage statement 打印使用说明

EXAMPLES 示例

Import named volume content from the specified file.
从指定文件中导入命名卷的内容。

$ podman volume import myvol test.tar

Import named volume content from stdin.
从标准输入中导入命名卷的内容。

$ gunzip -c hello.tar.gz | podman volume import myvol -

Export the content from named volume and pipe it into the named volume via stdin.
从命名卷中导出内容,并通过标准输入流将其传输到命名卷中。

$ podman volume export oldmyvol | podman volume import myvol -

SEE ALSO 参见 ¶

podman(1), podman-volume(1), podman-volume-export(1)