Skip to content

Instantly share code, notes, and snippets.

@parties
Created August 3, 2021 20:03
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 parties/740b0f23c16253464b737a8f5f3efc9d to your computer and use it in GitHub Desktop.
Save parties/740b0f23c16253464b737a8f5f3efc9d to your computer and use it in GitHub Desktop.
Docker Cheat Sheet
# Work in progress, just collecting all the useful docker shortcuts I use
# remove all containers, including volumes
docker rm -vf $(docker ps -a -q)
# delete all images
docker rmi -f $(docker images -a -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment