想在 ubuntu 系统上安装 docker,方法清晰步奏简单,但必须是64-bit的ubuntu版本,且是以下4个版本之一:
- Zesty 17.04
- Yakkety 16.10
- Xenial 16.04 (LTS)
- Trusty 14.04 (LTS)
在安装之前要注意, 先卸载老版本的 docker!
$ sudo apt-get remove docker docker-engine docker.io
1,把 docker 的源地址加入 ubuntu
依次输入下面3条命令:
$ sudo apt-get update
$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
最后,再输入命令:
$ sudo apt-key fingerprint 0EBFCD88
来验证是否添加成功,如果显示的Key fingerprint
的值为9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88
,则说明成功。
例如:
2,更新apt
列表
因为上一步添加了源,所以这里需要先更新。
$ sudo apt-get update
3,安装最新版的 Docker-CE (社区版,免费使用)
$ sudo apt-get install docker-ce
等一会儿,安装就完成了。
4,验证安装
执行命令:
$ sudo docker run hello-world
正常情况下会显示:
则代表 docker 安装成功了,接下来可以尽情遨游了~