我已经构建了一个非常大的图像(1G),其中有很多“基础设施”用于测试(Mongo,Kafka等)
我已经清除了已停止的图像并删除了我并不绝对需要的任何图像.
如果使用Docker在设备错误上没有剩余空间,您可以使用系统修剪轻松解决此问题.
原文链接:https://www.f2er.com/docker/436542.html我使用Docker for Mac 17.03.
使用docker UP和所有容器RUNNING,执行docker system prune -a
这应该给出以下对话框:
WARNING! This will remove:
- all stopped containers
- all volumes not used by at least one container
- all networks not used by at least one container
- all images without at least one container associated to them Are you sure you want to continue? [y/N]
然后按y删除大量容器,总结(在我的情况下):总回收空间:23.26 GB.
现在你甚至可以在没有重启docker的情况下重新开始工作!