一、首先执行如下命令可以查看 docker 文件夹磁盘使用情况:
[root@pi ~]# du -hs /var/lib/docker/
17G /var/lib/docker/
二、执行如下可以查看 Docker 的磁盘使用情况(类似于 Linux 上的 df 命令)
[root@pi ~]# docker system df
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
Images 4 2 1.659GB 268.9MB (16%)
Containers 2 2 1.037GB 0B (0%)
Local Volumes 0 0 0B 0B
Build Cache 0 0 0B 0B
三、 docker system prune -a命令清理得更加彻底,可以将没有容器使用 Docker 镜像都删掉
[root@pi ~]# docker system prune -a
WARNING! This will remove:
- all stopped containers
- all networks not used by at least one container
- all images without at least one container associated to them
- all build cache
Are you sure you want to continue? [y/N] y
Total reclaimed space: 0B
版权声明:本文为qq_41417660原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。