Skip to content

Instantly share code, notes, and snippets.

@simonsdave
Created May 13, 2016 12:15
Show Gist options
  • Save simonsdave/6c6fb3fa10a1a52fe5b3f95652139cc7 to your computer and use it in GitHub Desktop.
Save simonsdave/6c6fb3fa10a1a52fe5b3f95652139cc7 to your computer and use it in GitHub Desktop.
remove all docker containers
sudo docker kill `sudo docker ps --no-trunc -q` >& /dev/null
sudo docker rm `sudo docker ps --no-trunc -a -q` >& /dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment