-
-
Save maxwellamaral/3d23a812543f33d6b7bcade9f62b1372 to your computer and use it in GitHub Desktop.
Apagando tudo no docker
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
docker ps -a | awk '{print $1}' | xargs docker stop | |
docker ps -a | awk '{print $1}' | xargs docker rm -f | |
docker images -a | awk '{print $3}' | xargs docker rmi -f | |
docker volume ls | awk '{print $2}' | xargs docker volume rm | |
docker network ls | awk '{print $2}' | xargs docker network rm | |
docker ps -a | |
docker images -a | |
docker volume ls | |
docker network ls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment