Skip to content

Instantly share code, notes, and snippets.

@lgs
Created January 4, 2016 17:56
Show Gist options
  • Save lgs/078d98834fc7b237f62e to your computer and use it in GitHub Desktop.
Save lgs/078d98834fc7b237f62e to your computer and use it in GitHub Desktop.
Docker: clen up intermediate unamed images
docker images | egrep "<none>.*<none>" | awk '{print $3}' | while read image ; do docker rmi -f $image; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment