centos7快速安装docker服务
Posted djlsunshine
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7快速安装docker服务相关的知识,希望对你有一定的参考价值。
安装依赖包
yum install -y yum-utils device-mapper-persistent-data lvm2
置阿里云镜像源
yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
开始安装
yum install docker-ce
开机自启docker
systemctl enable docker
启动docker服务
systemctl start docker
加速器地址
mkdir -p /etc/docker tee /etc/docker/daemon.json <<-‘EOF‘ { "registry-mirrors": ["https://sg7r7zsg.mirror.aliyuncs.com"] } EOF
重启docker
systemctl stop docker
systemctl daemon-reload
systemctl restart docker
以上是关于centos7快速安装docker服务的主要内容,如果未能解决你的问题,请参考以下文章