docker 安装nginx

Posted 小田吃饺子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker 安装nginx相关的知识,希望对你有一定的参考价值。

文章来源:https://www.cnblogs.com/hello-tl/p/9293568.html 

1.拉取镜像

docker pull nginx:1.15.1

2.启动nginx复制配置文件

# docker run -it --name nginx1.15.1 -p 80:80 -d nginx

3.  创建配置文件

### 创建配置文件夹
# mkdir /data
# mkdir /data/nginx1.15.1
# mkdir /data/nginx1.15.1/conf


### 复制配置文件
# docker cp nginx1.15.1:/etc/nginx/nginx.conf /data/nginx1.15.1/conf
# docker cp nginx1.15.1:/usr/share/nginx/html /data/nginx1.15.1/
# docker cp nginx1.15.1:/etc/nginx/conf.d /data/nginx1.15.1/

###删除 nginx1.15.1 容器
# docker rm -f nginx1.15.1

4.配置启动

docker run --name nginx1.15.1 --restart always -p 80:80 \\
 -v /data/nginx1.15.1/html:/usr/share/nginx/html \\
 -v /data/nginx1.15.1/conf/nginx.conf:/etc/nginx/nginx.conf:ro \\
 -v /data/nginx1.15.1/conf.d:/etc/nginx/conf.d -d nginx

5.说明

1、第一行指定名称和端口
2、第二行自定义页面内容
3、第三行和第四行都是指定配置信息
4、文件的路径就是刚刚复制文件夹的路径

6.测试是否成功 我自己配置的是81端口 你们运行直接127.0.0.1即可

文章来源:https://www.cnblogs.com/hello-tl/p/9293568.html 

以上是关于docker 安装nginx的主要内容,如果未能解决你的问题,请参考以下文章

windows下docker安装nginx

Docker容器安装nginx基本步骤Yum版

使用docker容器安装nginx的使用

docker 安装 nginx 并配置反向代理

nginx docker怎么配置

docker安装nginx