Skip to content

Instantly share code, notes, and snippets.

@gavindekock
Last active April 17, 2017 07:49
Show Gist options
  • Save gavindekock/0b0316fff98e17e78f786ae406d1bfc9 to your computer and use it in GitHub Desktop.
Save gavindekock/0b0316fff98e17e78f786ae406d1bfc9 to your computer and use it in GitHub Desktop.
Docker housekeeping on Windows
for /F %i in ('docker ps -aq') do @docker rm %i
for /F %i in ('docker images -aq') do @docker rmi %i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment