docker system df
清理docker占用空间
# 删除未使用的镜像,不加-a就删除从未使用过的镜像
docker image prune -a
# 删除未使用的docker volume
docker volume prune
# 删除每个未使用的容器、镜像、volumes和networks
docker system prune -a --volumes
The End
docker system df
清理docker占用空间
# 删除未使用的镜像,不加-a就删除从未使用过的镜像
docker image prune -a
# 删除未使用的docker volume
docker volume prune
# 删除每个未使用的容器、镜像、volumes和networks
docker system prune -a --volumes