Last active
May 3, 2018 13:06
-
-
Save demagu/06f0b2499972ca46e067b3bf5ef521cc 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
# Delete all Docker containers | |
# Must be run first because images are attached to containers | |
docker rm -f $(docker ps -a -q) | |
# Delete all Docker images | |
docker rmi -f $(docker images -q) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment