赞
踩
卸载老版本
yum remove docker docker-common docker-selinux docker-engine
安装相关需要的包
yum install -y yum-utils device-mapper-persistent-data lvm2
设置docker镜像仓库
yum-config-manager \
--add-repo \
http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
安装最新版本docker
yum install docker-ce
启动与停止
systemctl start docker
systemctl stop docker
systemctl stop docker.socket
执行第一个错误了,在执行第二个。有些系统执行第一个可以,有些系统执行第二个才可以。
systemctl restart docker
systemctl status docker
systemctl enable docker
设置国内镜像
vim /etc/docker/daemon.json
{
"registry-mirrors": ["https://w57n2hu2.mirror.aliyuncs.com"]
}
# 重载此配置文件
systemctl daemon-reload
# 重启 docker
systemctl restart docker
docker
相关依赖Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。