Having an issue with one of our Gitlab Servers running in Docker. Ran a build today that broke because of no space left on device. Come to find out that /var is out of storage.
A du -h --threshold=1G in /var will quickly show that the space is being used by overlay2 in lib/docker/overlay. All of the prune commands one may find (docker system prune, docker volume prune, etc) don't leave a dent in the storage being consumed. So what gives? Any data in the Gitlab server is being persisted elsewhere, but something docker related is gradually filling up space on the filesystem, I just don't know what it is. Can someone help me understand what is going on?
Thank you!