Skip to content

Instantly share code, notes, and snippets.

@nucreativa
Created October 14, 2015 04:30
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 nucreativa/375fa7399a2c8cc1de22 to your computer and use it in GitHub Desktop.
Save nucreativa/375fa7399a2c8cc1de22 to your computer and use it in GitHub Desktop.
One liner to stop / remove all of Docker containers

STOP

docker stop $(docker ps -a -q)

REMOVE

docker rm $(docker ps -a -q)

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