ubuntu安装最新docker
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu安装最新docker相关的知识,希望对你有一定的参考价值。
不安装旧版docker,如果有旧版可以先使用命令卸载。
$ sudo apt-get remove docker docker-engine docker.io
为了能更新docker,所以我选择先安装docker仓库。
(1)更新
$ sudo apt-get update
(2)安装包以使apt可以通过HTTPS使用存储库:
$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
(3)添加密钥
$ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
Verify that the key fingerprint is 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88.
$ sudo apt-key fingerprint 0EBFCD88
pub 4096R/0EBFCD88 2017-09-9
Key fingerprint = 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88
uid Docker Release (CE deb) <[email protected]>
sub 4096R/F273FCD8 2017-09-9
目前已经安装好了仓库。
如果是国内服务器,要将其中的 https://download.docker.com/linux/ 替换为 https://mirrors.aliyun.com/docker-ce/linux/。目的是快点
如果在安装密钥时报443错误,可以在你的浏览器上下载下来密钥,然后使用apt-get add 如果显示ok就好了。
下来是使用稳定的仓库了:
x86_64:
$ sudo add-apt-repository \
"deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu \
$(lsb_release -cs) \
stable"
最后下载docker社区版:
apt-get update
apt-get install docker-ce
本文出自 “11716212” 博客,请务必保留此出处http://11726212.blog.51cto.com/11716212/1963906
以上是关于ubuntu安装最新docker的主要内容,如果未能解决你的问题,请参考以下文章
sh 在Ubuntu上安装最新的Docker和Docker-compose