ubuntu安装docker
官网文档(如果英文不太好,可以将其翻译成中文看)因为我用的操作系统是ubuntu,所以我就安装ubuntu版本docker
https://docs.docker.com/install/linux/docker-ce/ubuntu/
卸载旧版本
老版本的Docker被称为docker或docker-engine。如果安装了这些,请将其卸载:
$ sudo apt-get remove docker docker-engine docker.io
使用存储库进行安装
- 首次在新的主机上安装Docker CE之前,需要设置Docker存储库。之后,您可以从存储库安装和更新Docker。
- 设置存储库
1.更新apt软件包索引:
$ sudo apt-get update
2.安装软件包以允许apt通过HTTPS使用存储库:
$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
3.添加Docker的官方GPG密钥:
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
如果卡住或出现异常:
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D8576A8BA88D21E9
-- 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88通过搜索指纹的最后8个字符,确认您现在拥有指纹的密钥 。
$ sudo apt-key fingerprint 0EBFCD88
pub 4096R/0EBFCD88 2017-02-22
Key fingerprint = 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88
uid Docker Release (CE deb) <docker@docker.com>
sub 4096R/F273FCD8 2017-02-22
4.使用以下命令来设置稳定的存储库。即使您想从边缘或测试存储库安装构建,也总是需要稳定的存储 库。要添加边缘或 测试存储库,请在下面的命令中添加单词或(或两者)后面的单词。edgeteststable
注意:下面的lsb_release -cs子命令返回你的Ubuntu发行版的名字,比如xenial。有时候,像Linux Mint这样的发行版中,可能需要更改$(lsb_release -cs) 为您的父级Ubuntu发行版。例如,如果你正在使用 Linux Mint Rafaela,你可以使用trusty。
<b style="color:red">x86_64 / amd64</b> | armhf | IBM Power(ppc64le)| IBM Z(s390x)
$ sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
安装DOCKER CE
1.更新apt软件包索引。
$ sudo apt-get update
2.安装最新版本的Docker CE,或者转到下一步安装特定版本。任何现有的Docker安装都将被替换。
$ sudo apt-get install docker-ce
<b>有多个Docker存储库?</b>
<b>如果您启用了多个Docker存储库,则安装或更新,而不指定版本apt-get install或 apt-get update命令始终安装最高版本,这可能不适合您的稳定性需求。</b>
3.在生产系统上,您应该安装特定版本的Docker CE,而不是始终使用最新版本。此输出被截断。列出可用的版本。
$ apt-cache madison docker-ce
docker-ce | 17.12.0~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
<b>列表的内容取决于启用了哪个存储库。选择一个特定的版本进行安装。第二列是版本字符串。第三列是存储库名称,它指明了软件包来自哪个存储库,并且通过扩展其稳定性级别。要安装特定版本,请将版本字符串附加到包名称,并用等号(=)将它们分开:</b>
$ sudo apt-get install docker-ce=<VERSION>
(我这里安装的是17.12,也就是最新版本 sudo apt-get install docker-ce=<17.12>)
Docker守护进程自动启动。
4.通过运行hello-world 映像验证是否正确安装了Docker CE 。
$ sudo docker run hello-world
5.运行hello-word的结果
Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://cloud.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/engine/userguide/
6.查看当前安装docker 版本
$ docker -v
Docker version 17.12.0-ce, build
- 以上内容使用官方文档安装成功后记录下来