Skip to content

Instantly share code, notes, and snippets.

@muhx
Created February 17, 2017 08:14
Show Gist options
  • Save muhx/9ddecd944005718abc95126932426435 to your computer and use it in GitHub Desktop.
Save muhx/9ddecd944005718abc95126932426435 to your computer and use it in GitHub Desktop.
One liner task to remove exited docker
sudo docker ps -a | grep Exit | cut -d ' ' -f 1 | xargs sudo docker rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment