Stop all containers:
docker stop $(docker ps -aq)One by One Prune:
docker container prune -f
docker network prune -f
docker volume prune -f
docker image prune --all -fRemove all including Build Cache:
docker system prune --all --volumesReference: https://docs.docker.com/config/pruning/#prune-everything
