Skip to content

Instantly share code, notes, and snippets.

@julien-truffaut
Last active July 18, 2019 13:36
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 julien-truffaut/0c3daaee02ccacbc798266c657f24c93 to your computer and use it in GitHub Desktop.
Save julien-truffaut/0c3daaee02ccacbc798266c657f24c93 to your computer and use it in GitHub Desktop.
Docker cheat sheet
docker kill $(docker ps -q)    # stop all containers
docker rm $(docker ps -a -q)   # remove all containers
docker rmi $(docker images -q) # remove all docker images
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment