docker
docker: get rid of images and containers
I moved the blabbering behind the important stuff: how to get rid of the docker images/containers docker system prune # dangling containers docker system prune -a # dangling,stopped containers and all unused images docker rmi $(docker images -a -q) # all images docker rm $(docker ps -a -f status=exited -q)