Created
August 3, 2021 20:03
-
-
Save parties/740b0f23c16253464b737a8f5f3efc9d to your computer and use it in GitHub Desktop.
Docker Cheat Sheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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