Skip to content

Instantly share code, notes, and snippets.

@buckett
Created May 19, 2015 11:02
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save buckett/577020ab3260c5eafe4b to your computer and use it in GitHub Desktop.
Save buckett/577020ab3260c5eafe4b to your computer and use it in GitHub Desktop.
Cleans out old docker images and containers.
#!/bin/bash
# Clean all exited containers
docker ps -qaf status=exited | xargs docker rm
# Remove all unused images
docker images -f dangling=true -q | xargs docker rmi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment