查看docker 空间使用情况,包括镜像、容器和(本地)volume。
[root@worker1 ~]# docker system dfTYPE TOTAL ACTIVE SIZE RECLAIMABLEImages 3 0 319.9MB 319.9MB (100%)Containers 0 0 0B 0BLocal Volumes 1 0 156.5kB 156.5kB (100%)Build Cache 0 0 0B 0B
查看实时事件(例如容器创建,删除等均会实时显示)
[root@worker1 ~]# docker system events
- 查看docker 系统信息(同docker info)
[root@worker1 ~]# docker system info
- docker清理(清理停止的容器,没用容器使用的网络,镜像,缓存)
[root@worker1 ~]# docker system pruneWARNING! This will remove:- all stopped containers- all networks not used by at least one container- all dangling images- all dangling build cacheAre you sure you want to continue? [y/N] yTotal reclaimed space: 0B
