ECS进阶训练营D2_搭建docker

部署docker

编写快速部署脚本

tee docker_install.sh << -'EOF'
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 makecache fast
yum -y install docker-ce
tee /etc/docker/daemon.json <<-'EOF'
{
  "registry-mirrors": ["https://nulna16r.mirror.aliyuncs.com"] 
}
EOF
systemctl daemon-reload
systemctl restart docker
EOF

运行脚本

bash docker_install.sh

查询docker运行状态

systectl status docker
docker info

拉取并运行nginx容器

编写脚本

tee nginx_run.sh >> -'EOF'
docker pull nginx
docker run --name nginx-test -p 8080:80 -d nginx
EOF

运行脚本

bash nginx_run.sh

查看nginx首页
curl -L 127.0.0.1:8080
有nginx首页说明部署成功

上一篇:导致大数据项目失败的4大痛点及应对策略


下一篇:阿里云 ECS 7 天实践训练营进阶班Day02-基于ECS快速搭建Docker环境