安装依赖,lvm
yum install -y yum-utils device-mapper-persistent-data lvm2
官方源
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
阿里云源
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
清华大学源
yum-config-manager --add-repo https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/centos/docker-ce.repo
安装命令
yum install docker-ce docker-ce-cli containerd.io
安装指定版本
yum list docker-ce --showduplicates | sort -r
yum install docker-ce-<VERSION_STRING> docker-ce-cli-<VERSION_STRING> containerd.io
配置data-root
vim /usr/lib/systemd/system/docker.service
--data-root=/data/docker
systemctl daemon-reload
systemctl start docker
systemctl enabled docker
修改配置文件
{
"log-opts": {"max-size":"100m", "max-file":"3"}
}