我正在尝试各种"docker image history"
命令选项来查看用于在本地计算机上构建图像的图像层。
我的系统上有一个没有分配标签的 nginx 图像。所以"docker images"
命令在我的系统中列出了以下图像。
我尝试使用以下命令查找 nginx 映像的层详细信息:
docker image history nginx
但由于未指定标签名称,docker-cli 将其视为默认的“最新”标签,该标签在我的系统上不存在,并且我收到以下错误:
Error response from daemon: No such image: nginx:latest
我尝试了使用“ none ”作为标签的相同命令,但它也因以下错误而失败:
docker image history nginx:none
Error response from daemon: No such image: nginx:none
有什么建议么 ?我们如何才能看到没有分配标签的图像层。