其他分享
首页 > 其他分享> > docker安装

docker安装

作者:互联网

卸载旧版

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

安装apt依赖包
$ sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common
因为是使用apt自动更新仓库,所以需要安装htts等依赖包,
curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
下载docker官方密钥,在自动下载的时候提供认证,apt-key应该是保存很多应用的密钥

sudo apt-key fingerprint 0EBFCD88 可以检索一下是否正确下载密钥


指定docker仓库
$ sudo add-apt-repository \
   "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/ \
  $(lsb_release -cs) \
  stable"

下载安装最新的docker engine-communitiy 和 containerd
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
也可通过查看仓库中所有可用版本,然后通过 版本字符串安装特定版本
apt-cache madison docker-ce
sudo apt-get install docker-ce=<VERSION_STRING> docker-ce-cli=<VERSION_STRING> containerd.io



标签:get,containerd,sudo,ce,apt,docker,安装
来源: https://www.cnblogs.com/neseit/p/16166089.html