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

前端 未结 13 2183
离开以前
离开以前 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:27

    For me the issue turned out that a Docker Pull was hung, so I CTRL+C'd out of it and tried again. Same error message.

    In the end I found some files owned by root in this directory. Giving the files proper permissions fixed the issue.

    chown -R : /var/lib/docker/tmp

    • MAC Docker version 17.12.0-ce, build c97c6d6

提交回复
热议问题