### ```shell # 查看层信息 crane manifest xxx-registry.cn-beijing.cr.aliyuncs.com/ops/test:v1.0 |jq . # 根据上面层信息下载层镜像 docker pull xxx-registry.cn-beijing.cr.aliyuncs.com/ops/test@sha256:9eb40869cf96da5af8aa6d5a64b0293b2e821278582e096d7177958001aa8508 # 下载容器文件系统到本地 mkdir tmp && cd tmp crane export -v xxx-registry.cn-beijing.cr.aliyuncs.com/ops/test:v1.0 - | tar xv ``` ###