Skip to content

Instantly share code, notes, and snippets.

@sw360cab
Last active April 13, 2016 13:17
Show Gist options
  • Save sw360cab/559362aead4735046eca72877ac305e7 to your computer and use it in GitHub Desktop.
Save sw360cab/559362aead4735046eca72877ac305e7 to your computer and use it in GitHub Desktop.
Remove container which status is 'Exited'
docker ps -a | grep 'Exited' | awk '{print $1}' | xargs docker rm -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment