Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save arlina-espinoza/153506e639c6bcbab877f001a9cf3e1d to your computer and use it in GitHub Desktop.
Save arlina-espinoza/153506e639c6bcbab877f001a9cf3e1d to your computer and use it in GitHub Desktop.
function remove-docker-containers
echo "Stop running shit"
docker stop (docker ps -q)
echo "Remove the whale shit"
docker rm (docker ps -a -q)
end
function remove-docker-images
remove-docker-containers
echo "Remove pictures of whale shit"
docker rmi (docker images -f "dangling=true" -q)
end
function CLEAN-THE-FUCKING-DOCKER
remove-docker-images
echo "Fucking shit, those silly fucking whales eating my fucking disk"
docker volume rm (docker volume ls -qf dangling=true)
echo "done m8"
end
function docker-kill-all
echo "Kill the whales!"
docker kill (docker ps -q)
echo "Done."
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment