Skip to content

Instantly share code, notes, and snippets.

@halfvector
Created March 25, 2015 13:50
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 halfvector/10e50b4a2462083a8f53 to your computer and use it in GitHub Desktop.
Save halfvector/10e50b4a2462083a8f53 to your computer and use it in GitHub Desktop.
Cleanup exited Docker containers to free up disk space
#!/bin/sh
echo "Removing exited docker containers.."
docker ps -f status=exited -q | xargs docker rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment