NAME¶ 名称
podman-export - Export a container’s filesystem contents as a tar archive
podman-export - 将容器的文件系统内容导出为 tar 存档
SYNOPSIS¶ 概要
podman export [options] container
podman export [选项] 容器
podman container export [options] container
podman 容器 export [选项] 容器
DESCRIPTION¶ 描述
podman export exports the filesystem of a container and saves it as a tarball
on the local machine. podman export writes to STDOUT by default and can be
redirected to a file using the --output
flag.
The image of the container exported by podman export can be imported by podman import.
To export image(s) with parent layers, use podman save.
Note: :
is a restricted character and cannot be part of the file name.
podman export 将容器的文件系统导出并保存为本地机器上的 tarball。podman export 默认写入 STDOUT,并可以使用 --output
标志重定向到文件。podman export 导出的容器镜像可以通过 podman import 导入。要导出具有父层的镜像,请使用 podman save。注意: :
是受限制的字符,不能成为文件名的一部分。
podman [GLOBAL OPTIONS] podman [全局选项]
podman export [GLOBAL OPTIONS]
podman export [全局选项]
podman export [OPTIONS] CONTAINER
OPTIONS¶ 选项
--help, -h¶ --help,-h ¶
Print usage statement 打印使用说明
--output, -o¶
Write to a file, default is STDOUT
写入文件,默认为标准输出
EXAMPLES¶ 示例
Export container into specified tar ball:
将容器导出到指定的 tar 包中:
$ podman export -o redis-container.tar 883504668ec465463bc0fe7e63d53154ac3b696ea8d7b233748918664ea90e57
Export container to stdout:
将容器导出到标准输出:
$ podman export 883504668ec465463bc0fe7e63d53154ac3b696ea8d7b233748918664ea90e57 > redis-container.tar
SEE ALSO¶ 参见 ¶
podman(1), podman-import(1)
podman(1),podman-import(1)
HISTORY¶ 历史 ¶
August 2017, Originally compiled by Urvashi Mohnani umohnani@redhat.com
2017 年 8 月,最初由 Urvashi Mohnani umohnani@redhat.com 编写