Skip to content

Instantly share code, notes, and snippets.

@furkansuleymana
Last active June 23, 2025 16:18
Show Gist options
  • Save furkansuleymana/cbf175c306077f53a14875f157303641 to your computer and use it in GitHub Desktop.
Save furkansuleymana/cbf175c306077f53a14875f157303641 to your computer and use it in GitHub Desktop.
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