Skip to content

Instantly share code, notes, and snippets.

@bofm
Last active November 19, 2015 10:57
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 bofm/44ed9898fc230453d680 to your computer and use it in GitHub Desktop.
Save bofm/44ed9898fc230453d680 to your computer and use it in GitHub Desktop.
Docker cleanup
#!/usr/bin/env bash
docker rm $(docker ps -aq -f status=exited)
docker rmi $(docker images --quiet --filter "dangling=true")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment