yum install -y yum-utils device-mapper-persistent-data lvm2
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 -y install docker-ce docker-ce-cli containerd.io
systemctl enable docker 开机自启
指定版本安装
yum list docker-ce --showduplicates | sort -r
yum install docker-ce-<VERSION_STRING> docker-ce-cli-<VERSION_STRING> containerd.io
systemctl start docker 启动
docker-mysql 安装
docker import mysql5.7.25.tar mysql:5.7.25
或
docker load --input mysql5.7.25.tar
docker-redis 安装
docker pull redis:6.0.10
或
0 Comments
Leave a comment