Skip to content

Instantly share code, notes, and snippets.

@SensibleWood
Created September 15, 2017 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SensibleWood/e85ce6ae5a9d7a749e83091b72de38cf to your computer and use it in GitHub Desktop.
Save SensibleWood/e85ce6ae5a9d7a749e83091b72de38cf to your computer and use it in GitHub Desktop.
Delete all Docker images from local repository
#!/usr/bin/env bash
docker images | awk '$1 != "REPOSITORY" { print $1 }' | xargs docker rmi -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment