Skip to content

Instantly share code, notes, and snippets.

@constrict0r
Created January 27, 2019 04:32
Show Gist options
  • Save constrict0r/2f4362dc614e27a1186b05bf40aecceb to your computer and use it in GitHub Desktop.
Save constrict0r/2f4362dc614e27a1186b05bf40aecceb to your computer and use it in GitHub Desktop.
Stop/Remove all 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