# Awesome command ## Docker 删除所有标签为 `<none>` 的 Docker 镜像 ```bash docker rmi $(docker images -f "dangling=true" -q) ```