i pull docker image and create container using docker-compose, after running the command docker-compose up i got message ERROR: failed to register layer: ApplyLayer exit status 1 stdout: stderr: remount /, flags: 0x84000: permission denied. why docker-compose return this message?.
please any one can help me, thanks.
Asked
Active
Viewed 5,107 times
1
harmain
- 188
- 1
- 9
-
I wonder you just exhausted inode space. Can you try `df -i`? Or run docker cleanup `docker system prune -a --volumes` – czende Aug 08 '21 at 11:13
-
have you tried changing the storage , overlay/overlay2 has problems with older linux kernels; try using vfs instead and see if that works – Nic Mar 03 '22 at 07:15
