清理 清理# 删除所有未标记tag的镜像,即名为 none的镜像docker image prune# 删除所有未被使用的镜像docker image prune -a# 删除所有已停止的容器docker container prune# 删除所有未被挂载的卷docker volume prune# 删除所有网络docker network prune# 删除 docker 所有资源,慎用docker system prune