Closed ghost closed 5 years ago
The solution mentioned in that issue didn't work out for me, however i found a solution that worked for me. I'll describe it for anyone facing the same problem.
Some relevant lines from docker info
:
Server Version: 18.09.5-ce
Kernel Version: 4.19.36-1-MANJARO
Operating System: Manjaro Linux
I used the default install of docker from the Manjaro repo.
For some reason this was configured to use xfs
as the "Backing Filesystem" for the Docker Storage Driver. This meant it wasn't able to extract this image fully, due to lack of storage space.
The fix for me was adding:
/etc/docker/daemon.json
{
"storage-driver": "overlay2"
}
Restart docker afterwards. This changed the Backing Filesystem to the actual host machine's FS (ext4).
Hey,
when trying to pull the image I get the following output.
Someone suggested checking my inode space
I still have 170GB of free disk space, so that shouldn't be an issue. I've already removed all my unused images to no avail.
Any suggestions?