CentOS下安装Docker记录
安装包的方式
下载安装包
1
wget https://download.docker.com/linux/centos/7/x86_64/stable/Packages/docker-ce-18.06.1.ce-3.el7.x86_64.rpm
酌情安装
yum install -y wget
安装docker:
1
yum install -y docker-ce-18.06.1.ce-3.el7.x86_64.rpm
启动docker
1
systemctl start docker
开机自动启动
1
systemctl enable docker
验证docker是否安装成功
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18docker run hello-world
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://hub.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/engine/userguide/