使用以下命令清理none镜像
docker rmi -f $(docker images | grep "<none>" | awk "{print \$3}")
清理已经停止运行的docker容器
docker rm $(docker ps --all -q -f status=exited)