Created
September 14, 2020 17:24
-
-
Save madeinnordeste/91abfb09657e1d1a267fdce8d9e0b08d 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
# kill containers | |
function docker-kill-containers(){ | |
docker kill $(docker ps -q) | |
} | |
# remove stoped containers | |
function docker-remove-containers(){ | |
docker rm $(docker ps -a -q) | |
} | |
# remove images | |
function docker-remove-images(){ | |
docker rmi $(docker images -q) | |
} | |
# prune | |
function docker-prune(){ | |
docker system prune -a | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment