Skip to content

Instantly share code, notes, and snippets.

@tomaszklim
Created August 19, 2018 19:47
Show Gist options
  • Save tomaszklim/2e784d029e177407bcd4d1b810d11b0a to your computer and use it in GitHub Desktop.
Save tomaszklim/2e784d029e177407bcd4d1b810d11b0a to your computer and use it in GitHub Desktop.
Clear old Docker images (works with all Docker versions)
#!/bin/sh
docker rmi $(docker images | grep "^<none>" | awk '{print $3}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment