Skip to content

Instantly share code, notes, and snippets.

@evanscottgray
Created August 20, 2014 17:11
Show Gist options
  • Select an option

  • Save evanscottgray/60f1ca1386e33c79b296 to your computer and use it in GitHub Desktop.

Select an option

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