赞
踩
近些年来阿里云厂商可算是在大陆混的风生水起,三国鼎立的巨头,今天就带着大家购买一个所有使用权都属于自己的云服务器,并且使用Docker部署一个Web应用(提示:rm -rf /*你也可以使用哦)删库跑路喽,可以免费获得3-5年的吃饭不掏钱
阿里云curl地址:https://www.aliyun.com
访问阿里云地址,使用支付宝登录
鼠标放在“产品”选项卡,会跳出如下很多种选项,选择“云服务器ECS”
点击选项卡“立即购买”
选择购买的实例的配置
购买成功之后,就会出现如下界面,如果没有如下界面的话,就重新访问阿里云,右上角会有个“控制台”选项卡
购买成功之后,可以看到给我们分配了一个公网IP地址,等一下就要用xshell或者别的远程连接控制,进行连接即可(跟连接虚拟机一样,因为刚刚设置了root密码)
使用一个你觉得好的远程连接工具,我使用的xshell,但是连接没有任何区别,跟连接虚拟机是一个样的,要记者刚刚设置的Root密码,
下面就是登录之后的样子,虚拟机怎么操作云服务器就怎么操作
# 安装依赖环境
yum install -y yum-utils device-mapper-persistent-data lvm2
# 添加CentOS官方镜像Yum源
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
# 清理Yum缓存
yum clean all && yum makecache
# 安装Docker
yum -y install docker-ce docker-ce-cli containerd.io
# 启动Docker
systemctl start docker
systemctl enable docker
cd /etc/docker/
cat >> daemon.json << EOF
{
"registry-mirrors": ["https://8xpk5wnt.mirror.aliyuncs.com"]
}
EOF
# 重启Docker
systemctl restart docker
docker -v
Docker version 26.1.3, build b72abbb
# 创建nginx工作目录 [root@iZj6ci7ocy9seq0luvmlkaZ ~]# mkdir nginx [root@iZj6ci7ocy9seq0luvmlkaZ ~]# cd nginx/ [root@iZj6ci7ocy9seq0luvmlkaZ ~]# echo "aliyun Docker create" > ./index.html [root@iZj6ci7ocy9seq0luvmlkaZ ~]# ls index.html nginx-1.12.0.tar.gz [root@iZj6ci7ocy9seq0luvmlkaZ nginx]# vim Dockerfile # 指定基础镜像 FROM centos:7.6.1810 # 维护者信息 MAINTAINER Wzh@qq.com # 安装Nginx依赖包、并创建运行nginx用户 RUN yum -y install pcre-devel zlib-devel gcc gcc-c++ make && useradd -M -s /sbin/nologin nginx # 上传nginx压缩包,并解压(ADD指令会自动解压) ADD nginx-1.12.0.tar.gz /usr/src/ # 指定后续的工作目录 WORKDIR /usr/src/nginx-1.12.0/ RUN ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx && make && make install && ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/ && echo "aliyun Dockerfile create nginx" > /usr/local/nginx/html/index.html RUN rm -rf /usr/src/nginx-1.12.0/ # 指定http后台https端口 EXPOSE 80 EXPOSE 443 # 前台运行nginx CMD ["nginx","-g","daemon off;"]
[root@iZj6ci7ocy9seq0luvmlkaZ nginx]# docker build -t nginxkgc .
[root@iZj6ci7ocy9seq0luvmlkaZ nginx]# docker run -d -p 80:80 --name kgcnginx nginxkgc
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。