Skip to content

Instantly share code, notes, and snippets.

@evanscottgray
Created August 20, 2014 17:11
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 evanscottgray/60f1ca1386e33c79b296 to your computer and use it in GitHub Desktop.
Save evanscottgray/60f1ca1386e33c79b296 to your computer and use it in GitHub Desktop.
untag docker images with certain name
docker images | grep "INSERT_NAME_HERE" | awk {'print $1'} | xargs docker rmi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment