containerd
安装
使用
containerd -h
ctr -hctr images pull docker.io/library/golang:latest
ctr images ls -q # -q for only the namectr images rm docker.io/library/redis:alpinedocker save -o hello-world.tar hello-world # 将 image 保存为 .tar 文件
# docker save -o tar-filename.tar image-name
ctr images import hello-world.tar # 导入