Skip to content

Instantly share code, notes, and snippets.

View sluipmoord's full-sized avatar
🏠
Working from home

Gerhard Janse Van Rensburg sluipmoord

🏠
Working from home
View GitHub Profile
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