Closed fadeev closed 1 year ago
You might have lof dandling Docker images that took all the local space.
You can see running docker images
images with tag <none>
. You can remove those with:
docker rmi $(docker images -f "dangling=true" -q)
Running docker system prune -a
resolved it for me. Thanks, @lumtis, for the suggestion!
docker system prune -a
removes everything. Next time with docker rmi $(docker images -f "dangling=true" -q)
you prevent the need to rebuild the base images
Docker version 20.10.22, build 3a2c30b63a