Skip to content

Instantly share code, notes, and snippets.

@MattMS
Created November 13, 2017 07:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MattMS/7a1e839bc9f39cc56e836d834d25825e to your computer and use it in GitHub Desktop.
Save MattMS/7a1e839bc9f39cc56e836d834d25825e to your computer and use it in GitHub Desktop.
Delete all Docker Images with no ("<none>") tag.
#!/bin/sh
docker images | awk '$2 == "<none>" {print $3}' | xargs docker rmi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment