Skip to content

Instantly share code, notes, and snippets.

@nsollazzo
Last active May 15, 2019 13:01
Show Gist options
  • Save nsollazzo/56052a0b19938a91246c331cbde9ab4d to your computer and use it in GitHub Desktop.
Save nsollazzo/56052a0b19938a91246c331cbde9ab4d to your computer and use it in GitHub Desktop.
Stop and remove all docker container
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