podman

查看镜像

podman images

podman 镜像导出

podman save foxwho.com/fox/image:1.0.0 -o image.img

foxwho.com/fox/image:1.0.0 : 打包时定义的镜像地址和版本号
image.img : 要保存的镜像名称,后缀可以是任何后缀,不限

podman 镜像导入

podman import image.img

image.img : 要导入的镜像名称

ctr

查看镜像

crictl images list
或
ctr images list
或
ctr i ls -q

ctr:containerd本身的CLI
crictl :Kubernetes社区的专门CLI工具

导入

ctr image import  image.img

ctr image import  mysql8.tar.gz

导出

# 导出 docker.io/library/mysql:8 镜像,且保存的压缩包为 mysql8.tar.gz
ctr image export --all-platforms mysql8.tar.gz docker.io/library/mysql:8
或
ctr image export --all-platforms image.img docker.io/library/mysql:8

拉取远程镜像

ctr --debug image pull -u 用户名:密码 --plain-http 镜像地址
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐