要删除无用的Docker镜像,可以使用以下命令:
1. 列出所有镜像,包括无用的镜像:
```
docker images -a
2. 删除无用的镜像:
docker rmi
可以通过`docker rmi --force `强制删除正在使用的镜像。