Skip to content

Instantly share code, notes, and snippets.

@anildigital
Created January 4, 2014 09:34
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 anildigital/8253474 to your computer and use it in GitHub Desktop.
Save anildigital/8253474 to your computer and use it in GitHub Desktop.
Cleanup exited docker containers
sudo docker ps -a | grep Exit | awk '{print $1}' | sudo xargs docker rm
@mpe
Copy link

mpe commented Sep 11, 2014

sudo docker ps -a | awk '/Exit/ {print $1}' | sudo xargs docker rm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment