Skip to content

Instantly share code, notes, and snippets.

@klesouza
Last active June 23, 2016 16:42
Show Gist options
  • Save klesouza/26d2a67e51c675a4861149f583791285 to your computer and use it in GitHub Desktop.
Save klesouza/26d2a67e51c675a4861149f583791285 to your computer and use it in GitHub Desktop.
Cleaning docker images on Windows
FOR /f "tokens=1" %i IN ('docker images -f "dangling=true" -q') DO docker rmi -f %i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment