Skip to content

Instantly share code, notes, and snippets.

@mrjosh
Created March 20, 2020 11:05
Show Gist options
  • Save mrjosh/55d8d6a981575a6c88db7face1b5244a to your computer and use it in GitHub Desktop.
Save mrjosh/55d8d6a981575a6c88db7face1b5244a to your computer and use it in GitHub Desktop.
Remove all <none> images on docker:
```bash
docker rmi -f $(docker images | grep "<none>" | awk "{print \$3}")
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment