hello word

ubuntu18.04安装docker

ubuntu18.04安装docker

卸载老版本docker

sudo apt-get remove docker docker-engine docker.io containerd runc

安装新版本

sudo apt-get update
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 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
sudo usermod -aG docker your-user
posted @ 2020-10-20 15:59  喜欢唱歌的人  阅读(2)  评论(0编辑  收藏  举报