Skip to content

Instantly share code, notes, and snippets.

@epayet
Created November 13, 2014 09:59
Show Gist options
  • Save epayet/2585ab4c4d114e52f24d to your computer and use it in GitHub Desktop.
Save epayet/2585ab4c4d114e52f24d to your computer and use it in GitHub Desktop.
Docker tips
# Remove every docker images with no name
for i in `docker images|grep \<none\>|awk '{print $3}'`;do docker rmi $i;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment