Skip to content

Instantly share code, notes, and snippets.

@hanbei
Created August 5, 2014 14:29
Show Gist options
  • Save hanbei/e1bd2e82591f4beccfa6 to your computer and use it in GitHub Desktop.
Save hanbei/e1bd2e82591f4beccfa6 to your computer and use it in GitHub Desktop.
Delete all docker images that are not tagged
for i in `sudo docker images|grep \<none\>|awk '{print $3}'`;do sudo docker rmi $i;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment