华为ECS云服务器部署官方的Docker

环境介绍:
我们使用华为云云主机进行实验环境的搭建操作系统使用Centos7.6版本
使用到的链接:
https://www.huaweicloud.com/?locale=zh-cn
https://docs.docker.com/engine/install/centos/
最终实现的效果:部署完成nginx配置阿里云的加速器

操作步骤
1.先登录华为云申请云服务器

华为ECS云服务器部署官方的Docker_第1张图片
2.使用ssh登录执行:

yum clean all; yum makecache 
yum install -y lrzsz 

3.进入如下网站进行操作
https://docs.docker.com/engine/install/centos/
上边就是官网的部署文档 大致流程就是先配置yum文件,配置完成安装docker引擎,启动服务。最后设置开机启动。

4.按完成完成docker的截图:

华为ECS云服务器部署官方的Docker_第2张图片

5.配置docker的加速器

sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-'EOF'
{
  "registry-mirrors": ["https://2n9uoybw.mirror.aliyuncs.com"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker

6.使用docker命令运行nginx容器
开启华为云安全端口,配置如下

华为ECS云服务器部署官方的Docker_第3张图片
启动docker容器:

[root@ecs-42bb yum.repos.d]# **docker run -itd --name nginx-test -p 80:80 nginx**     只要这一条命令就ok
Unable to find image 'nginx:latest' locally
latest: Pulling from library/nginx
b4d181a07f80: Pull complete 
edb81c9bc1f5: Pull complete 
b21fed559b9f: Pull complete 
03e6a2452751: Pull complete 
b82f7f888feb: Pull complete 
5430e98eba64: Pull complete 
Digest: sha256:47ae43cdfc7064d28800bc42e79a429540c7c80168e8c8952778c0d5af1c09db
Status: Downloaded newer image for nginx:latest
0b4dae25294f49680307d5e32bd742a52dc369877fc55295785c943af1729c97
[root@ecs-42bb yum.repos.d]# 

7.最后验证最终的结果
华为ECS云服务器部署官方的Docker_第4张图片

本博主将在华为云专栏持续更新文档。谢谢大家支持!!!1

你可能感兴趣的:(华为云)