在Ubuntu上安装Docker, 非常简单, 我测试过 16.04, 17.04, 以及最新版 18.04,都是可以成功安装,并使用的。
第一步: 启动root账号
第二步: 配置网络,能上网
第三步: 安装Docker, 使用以下脚本:
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
$ sudo add-apt-repository
"deb [arch=amd64] https://download.docker.com/linux/ubuntu
$(lsb_release -cs)
stable"
$ sudo apt-get update
$ sudo apt-get install docker.io
$ systemctl start docker
$ systemctl status docker
$ docker image ls
$ docker pull 镜像名 ---- 开始下载镜像
Docker 的使用在下一篇详细介绍。