Skip to content

Instantly share code, notes, and snippets.

@elleryq
Created October 14, 2015 02:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elleryq/bc07ccd8451def7a5b57 to your computer and use it in GitHub Desktop.
Save elleryq/bc07ccd8451def7a5b57 to your computer and use it in GitHub Desktop.
docker - remove container which status is exited
#!/bin/sh
# Refer https://docs.docker.com/reference/commandline/ps/ to get more usage about filter(-f).
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