ubuntu16.10安装docker17.03.0-ce并配置国内源和加速器
2017-03-04 15:41 wish123 阅读(10252) 评论(0) 编辑 收藏 举报说明:这个针对docker-ce安装,ce和ee的区别是前者是社区版,后者是企业版
1. 配置Ubuntu的源,不然慢的去哭吧。参考http://cn.archive.ubuntu.com/help/ubuntu或https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/ 注意版本要对应。我的源配置见附件sources.list。
2. 安装docker,按照官方教程https://docs.docker.com/engine/installation/linux/ubuntu/
环境依赖
安装docker包
添加docker官方GPG秘钥
安装稳定版仓库
再次更新源
安装docker-ce
3. 给docker添加国内加速器(参考https://github.com/yeasy/docker_practice/blob/master/install/mirror.md)
在阿里云申请一个账号,打开连接https://cr.console.aliyun.com/#/accelerator 拷贝您的专属加速器地址,然后/etc/systemd/system/multi-user.target.wants/docker.service
文件,找到 ExecStart=
这一行,在这行最后添加加速器地址 --registry-mirror=<加速器地址>
注:对于 1.12 以前的版本,
dockerd
换成 docker daemon
重新加载配置并且重新启动
至此docker安装及国内加速器都好了,开始你的docker之旅吧。
hello-word