Skip to content

Instantly share code, notes, and snippets.

@lianyi
Last active September 18, 2016 13:51
Show Gist options
  • Save lianyi/0102d95354a08ca00b56b4c19eaeafd9 to your computer and use it in GitHub Desktop.
Save lianyi/0102d95354a08ca00b56b4c19eaeafd9 to your computer and use it in GitHub Desktop.
One liner to stop / remove all of Docker containers

One liner to stop / remove all of Docker containers:

docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment