Created
August 11, 2018 14:44
-
-
Save arastu/a6396847b05e0bd833cd5c271e509c1b to your computer and use it in GitHub Desktop.
delete all docker resource
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
#!/usr/bin/env bash | |
docker ps -a -q | xargs docker rm -f | |
docker images -a -q | xargs docker rmi -f | |
docker volume ls -q | xargs docker volume rm -f | |
docker network ls | xargs docker network rm | |
docker system prune -f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment