This has been addressed for me. I do have some images that are very large so I end up running these clean up commands once in a while and I find it to work fairly well. I haven’t seen ay out of space issues in a long time.
for item in $(docker ps -aq); do
docker stop $item
docker rm $item
done
for item in $(docker images --filter dangling=true -q); do
docker rmi $item
done
I’m not sure if this helps. But figured I’d share.