Skip to content

Instantly share code, notes, and snippets.

@adamatti
Last active November 1, 2019 16:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamatti/2e7f68114212e519b88490816d6745b8 to your computer and use it in GitHub Desktop.
Save adamatti/2e7f68114212e519b88490816d6745b8 to your computer and use it in GitHub Desktop.
Docker commands #docker
  • stop all containers: docker stop $(docker ps -q)
  • delete all containers: docker rm $(docker ps -aq)
  • delete all images: docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment