We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
删除镜像:docker rmi b01d82bd42de
docker rmi b01d82bd42de
报错如下:
Error response from daemon: conflict: unable to delete b01d82bd42de (cannot be forced) - image has dependent child images
大概意思就是这个镜像被别的镜像所依赖,不能强制删除,需要查找child images,再逐个删除
查找child images
docker image inspect --format='{{.RepoTags}} {{.Id}} {{.Parent}}' $(docker image ls -q --filter since=b01d82bd42de)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Docker下删除镜像报错 (cannot be forced) - image has dependent child images
删除镜像:
docker rmi b01d82bd42de
报错如下:
大概意思就是这个镜像被别的镜像所依赖,不能强制删除,需要查找child images,再逐个删除
查找child images
The text was updated successfully, but these errors were encountered: