Docker ERROR: Error processing tar file(exit status 1): unexpected EOF

前端 未结 13 2185
离开以前
离开以前 2020-12-14 06:12

I needed space and executed: docker rmi $(docker images -f \"dangling=true\" -q)

Since then I can\'t with docker-compose: docker-compose build

相关标签:
13条回答
  • 2020-12-14 06:42

    Try increasing the memory for Docker, it fixed the issue for me.

    Docker memory setting in Preferences was set to 2GB, so when pulling the ~3GB image, I was getting exactly this error:

    $ docker pull skymindops/skil-ce
    latest: Pulling from skymindops/skil-ce
    118c5f2883d6: Pull complete 
    3d199b2e6224: Extracting [==================================================>]  2.902GB/2.902GB
    failed to register layer: Error processing tar file(exit status 1): unexpected EOF
    

    Increasing the memory limit fixed it (I also increased the swap, but unsure was it required or not).

    0 讨论(0)
提交回复
热议问题