On RedHat 9 make demo fails with 'No space left on device'. By default it fails on pip downloading NVIDIA packages, with
export TMPDIR=/opt/tmp ; export DOCKER_TMPDIR=/opt/tmp ; make demo
it fails later, on
84.29 Installing collected packages: triton,...
What worked for me was moving docker's overlay2 directory to where there is plenty of room; with that, the container built OK and without the extra TMPDIR variables either. I was monitoring disk usage during the build and the final size of overlay2 was just under 100GB before it combined the layers into the final container.
Please make a note in the README that this container requires 100GB+ in /var/lib/docker/overlay2 to build.
On RedHat 9
make demofails with 'No space left on device'. By default it fails onpipdownloading NVIDIA packages, withit fails later, on
What worked for me was moving docker's
overlay2directory to where there is plenty of room; with that, the container built OK and without the extraTMPDIRvariables either. I was monitoring disk usage during the build and the final size ofoverlay2was just under 100GB before it combined the layers into the final container.Please make a note in the README that this container requires 100GB+ in
/var/lib/docker/overlay2to build.