- 首先升级yum
yum update
- 安装yum-utils,它提供yum-config-manager可以用来配置repo
yum install -y yum-utils
-
使用以下命令设置稳定版 repository
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
- 安装docker
yum install docker-ce -y #这个是CE版本
yum install docker-ee -y #这个是EE版本
yum install docker-ce-<VERSION> #安装特定版本 - 查看docker版本
docker version
- 启动docker
systemctl start docker
- 添加阿里云镜像加速
sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://c54mqrwj.mirror.aliyuncs.com"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker设置开机启动docker
service docker start
systemctl enable docker.servicemysql客户端输入账号密码链接测试出现“Authentication plugin 'caching_sha2_password' cannot be loaded:”解决方案 :
#进入bash
alter user 'test'@'%' identified with mysql_native_password by 'pwd123456';
相关文章
- ubuntu16.04下docker安装和简单使用(转)
- centos7下安装docker(3.2创建镜像build)
- Docker启动一个Centos镜像,在docker中安装ifconfig和ssh
- Docker学习笔记一 概念、安装、镜像加速
- docker在mac下安装及配置阿里云镜像加速
- 使用alpine的docker镜像下 dind 的方式安装dotnet core 的一个非dockerfile的方法
- 使用阿里云加速docker镜像的安装
- centos7下安装docker(3.1创建镜像commit)
- Docker安装及阿里云镜像加速器的配置方法
- Mac下配置Docker Kitematic使用Proxy加速镜像下载Swift Kitura镜像