Skip to content

Instantly share code, notes, and snippets.

@hpherzog
Created August 3, 2016 13:25
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 hpherzog/059c91ea1c532bda5f3e5c7847004380 to your computer and use it in GitHub Desktop.
Save hpherzog/059c91ea1c532bda5f3e5c7847004380 to your computer and use it in GitHub Desktop.
Remove all none tagged docker images
docker rm -v $(docker ps --filter status=exited -q 2>/dev/null) 2 > /dev/null
docker rmi $(docker images --filter dangling=true -q 2>/dev/null) 2 > /dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment