保存容器镜像包
命令说明
ecs 命令提供将容器 Bundle 保存为容器镜像包的功能,打包后的容器镜像包以压缩包的形式存在,便于传递。保存容器镜像包时使用如下命令:
ecs save tarPackagePath bundlePath repoName tag [os]
打包命令的参数说明如下:
tarPackagePath
为生成的 tar 包路径;bundlePath
为容器 Bundle 路径;repoName
为仓库名称;tag
为标签名称,通常应为 “latest”;
该命令支持的扩展选项如下:
os
为操作系统名称,默认为 “sylixos”。
参考示例
如将容器 Bundle 目录 /apps/ecs_demo 打包生成一个 ecs_demo.tar 镜像包,可执行如下命令:
[root@sylixos:/apps]# ecs save /apps/ecs_demo.tar /apps/ecs_demo/ ecs_demo latest