在ubuntu 16.04中安装docker

mac2024-11-22  26

卸载旧版本

apt官方库里的docker版本可能比较旧,所以先卸载可能存在的旧版本:

$ sudo apt-get remove docker docker-engine docker-ce docker.io 更新apt包索引 $ sudo apt-get update

这里可能会遇到错误:无法下载 http://ppa.launchpad.net/fcitx-team/nightly/ubuntu/dists/jessie/main/binary-amd64/Packages 404 Not Found

解决办法就是将对应的PPA删除:

(1)切换到对应的PPA目录:

$ cd /etc/apt/sources.list.d

(2)ls查看目录,可以看到对应的无法下载的fcitx-team-ubuntu-nightly-xenial.list,删除即可(安全起见,可以进行添加后缀.bak的备份)

$ mv fcitx-team-ubuntu-nightly-xenial.list fcitx-team-ubuntu-nightly-xenial.list.bak

然后再重新执行就可以了

安装以下包以使apt可以通过HTTPS使用存储库(repository): $ sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common 添加Docker官方的GPG密钥 $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

由于是国外的站点,可能等待的时间要长一点。

有的推荐使用阿里的镜像:

curl -fsSL http://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -

但是我在使用的时候一直是失败的,所以还是用的官方。

使用下面的命令来设置stable存储库 $ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" 再次更新apt包索引 $ sudo apt-get update

由于前面的秘钥是从国外站点下载的,所以第一次可能因为等待时间过长而执行失败,可以多试一次

安装最新版本的Docker CE $ sudo apt-get install -y docker-ce 查看docker服务是否启动 $ systemctl status docker
最新回复(0)