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

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

    Reference: https://medium.com/the-code-review/clean-out-your-docker-images-containers-and-volumes-with-single-commands-b8e38253c271

    1. Clean up containers, images, volumes and networks on your system:
    docker system prune --all --force --volumes
    2. docker-compose up

提交回复
热议问题