安装docker
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
systemctl start docker
systemctl enable docker
docker version #查看docker版本
docker三要素:容器,镜像,仓库
拉去nginx镜像
docker pull nginx:1.8
docker images #查看镜像
运行容器
mkdir /root/web
cd /root/web
#上传game.zip
unzip game.zip
docker run -d -p 9898:80 -v /root/web/:/usr/share/nginx/html nginx:1.8
# -d 后台运行容器
# -p 指定端口 宿主机端口9898映射到容器的80端口
# -v 指定路径映射把容器里的nginx得到默认首页文件映射到本机的web下
访问
101.37.22.37:9898/games
这个ip根据不同主机不一样
本文章用到的资源下载地址:
分享链接:http://101.37.22.37:1111/#s/94l3wZwA
访问密码:YpLWG
Comments NOTHING