Skip to content

Instantly share code, notes, and snippets.

@i-e-b
Last active March 10, 2018 04:23
Show Gist options
  • Select an option

  • Save i-e-b/bdd68e7921a9f76d5189 to your computer and use it in GitHub Desktop.

Select an option

Save i-e-b/bdd68e7921a9f76d5189 to your computer and use it in GitHub Desktop.
Kill all docker containers
sudo bash
docker stop -t 0 $(docker ps -a -q)
docker rm $(docker ps -a -q)
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment