Docker:显示每个拉取层的信息

Docker:显示每个拉取层的信息

每当我从注册表中提取镜像时,Docker 不仅会提取镜像,还会提取其他层。有没有办法告诉 docker 更详细地描述层?例如,如果我

$ docker pull IMG1

为此,Docker 客户端首先拉取 IMG0,我该如何获取

Unable to find image 'IMG1' locally
Pulling repository REPO_WITH_IMG1
IMG1: Pulling dependent layers 
IMG0: [the information which gets overwritten by] ; Download complete
...

代替

Unable to find image 'IMG1' locally
Pulling repository REPO_WITH_IMG1
IMG1: Pulling dependent layers 
e9e06b06e14c: [some information here, then comes] Download complete

相关内容