Created
June 13, 2020 19:27
-
-
Save isratmir/7db27d660ca49d7945549d33c77f0b1e to your computer and use it in GitHub Desktop.
This file contains 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
To delete all containers including its volumes use: | |
docker rm -vf $(docker ps -a -q) | |
To delete all the images: | |
docker rmi -f $(docker images -a -q) | |
docker system prune |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment