Broken Docker after last Ubuntu 18.04 update

后端 未结 1 1567
暖寄归人
暖寄归人 2021-01-23 08:02

does anyone have problem with Docker after last Ubuntu update? Ive got 2 projects which I run by docker-compose in ubuntu18.04. Both projects worked fine, but after 0 changes in

相关标签:
1条回答
  • 2021-01-23 08:31

    It works again with Docker version 19 as stated in answer in similar question of David. The answer is from oussama faleh.

    Here my steps to install docker version 19 on Ubuntu 18.04:

    sudo apt-get remove docker docker-engine docker.io containerd runc
    sudo apt-get install     apt-transport-https     ca-certificates     curl     gnupg-agent     software-properties-common
    curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
    sudo apt-key fingerprint 0EBFCD88
    sudo add-apt-repository    "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
       $(lsb_release -cs) \
       stable"
    sudo apt-get update
    sudo apt-get install docker-ce docker-ce-cli containerd.io
    docker -v
    
    0 讨论(0)
提交回复
热议问题