I'm attempting to pull and run a very simple python application for tests purposes but I'm facing the following issue. The server where I created the docker image is a Linux on System Z, the same architecture and same Linux distro - SLES 12.5 of the server I would like to pull that.
The /usr size is 30 GBs free so it can not be actual lack of space.
Any ideas about what could it be please?
linuxonz1:~# docker run rodgaiotto/my_docker_flask
Unable to find image 'rodgaiotto/my_docker_flask:latest' locally
latest: Pulling from rodgaiotto/my_docker_flask
54e2fb160a5d: Pull complete
a0f0f1e0f913: Pull complete
4c7ce4aae52f: Pull complete
3d5250b872c2: Pull complete
59c251493ce0: Extracting [==================================================>] 176.7MB/176.7MB
d8d5ba4a8579: Download complete
10556efc60d2: Download complete
2417bb4b07f5: Download complete
698bc892924e: Download complete
56e11fd21097: Download complete
b1117af456e9: Download complete
docker: failed to register layer: Error processing tar file(exit status 1): time="2020-04-26T20:28:44-04:00" level=info msg="SUSE:secrets :: enabled"
write /usr/lib/s390x-linux-gnu/libMagickCore-6.Q16.so.6.0.0: no space left on device.
inode utilization seems good:
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/mapper/system-usr 2339376 127033 2212343 6% /usr
zlinuxgpfs1:/ # docker system df
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
Images 3 3 515.4MB 64.79MB (12%)
Containers 9 0 0B 0B
Local Volumes 2 2 314.8MB 0B (0%)
Build Cache 0 0 0B 0B
Thanks!