## 1、安装
Docker版本:社区版CE、企业版EE
[安装教程](https://www.runoob.com/docker/centos-docker-install.html)
## 2、 启动/停止
```
docker version # 查看版本
systemctl start docker # 启动
systemctl stop docker # 停止
systemctl status docker # 查看状态
systemctl restart docker # 重启
systemctl enable docker # 设置开机自动启动
# 验证,运行hello world
docker run hello world # 下载hello world镜像并运行
```
## 3、 配置Docker镜像加速
使用阿里云提供的镜像加速(镜像仓库),也可以使用网易云等
步骤:
1. 注册并登陆“阿里云的开发者平台" http://dev.aliyun.com
2. 查看专属的加速器地址
3. 配置自己的Docker加速器
```
vi /etc/docker/daemon.json
{
"registry mirrors": ["https://sswv6yx0.mirror.aliyuncs.com"]
}
```
```
systemctl daemon reload
systemctl restart docker
```