Docker error : no space left on device

后端 未结 25 3037
悲哀的现实
悲哀的现实 2020-11-28 00:01

I installed docker on a Debian 7 machine in the following way

$ echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list
$          


        
25条回答
  •  不知归路
    2020-11-28 00:34

    I just ran into this. I'm on Ubuntu 20.04. What worked? Reinstalling Docker:

    sudo apt-get purge docker-ce docker-ce-cli containerd.io
    sudo apt-get install docker-ce docker-ce-cli containerd.io
    

    A bit crude, I know. I tried pruning Docker, but it still would not work.

提交回复
热议问题