Last active
June 23, 2025 16:18
-
-
Save furkansuleymana/cbf175c306077f53a14875f157303641 to your computer and use it in GitHub Desktop.
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
function clean-docker | |
docker stop (docker ps -qa) | |
docker rm (docker ps -qa) | |
docker rmi -f (docker images -qa) | |
docker volume rm (docker volume ls -q) | |
docker network rm (docker network ls -q) | |
docker system prune -af --volumes | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment