Last active
October 14, 2019 15:34
-
-
Save reiz/88584f43d3e268a2e01552315974ec7e 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
# Removes all dangling Containers | |
docker rm $(docker ps -q -f status=exited) | |
docker rmi `docker images -aq` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment