使用Dockerfile创建nginx服务容器镜像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Dockerfile创建nginx服务容器镜像相关的知识,希望对你有一定的参考价值。

1.下载nginx配置文件 wget http://www.apelearn.com/study_v2/.nginx_conf

2. vim Dockerfile

#本地有centos的镜像,可以直接指定镜像名称;如果需要从docker官网下载其他版本镜像,请自行修改版本号

FROM centos:6.8

MAINTAINER wyman [email protected]

#根据实际需要选择安装

RUN yum install -y pcre-devel wget net-tools gcc zlib zlib-devel make openssl-devel tar

ADD http://nginx.org/download/nginx-1.8.0.tar.gz /root

RUN tar zxf /root/nginx-1.8.0.tar.gz

RUN mkdir -p /usr/local/nginx

RUN cd /root/nginx-1.8.0 && ./configure --prefix=/usr/local/nginx && make && make install

RUN rm -fv /usr/local/nginx/conf/nginx.conf

COPY .nginx_conf /usr/local/nginx/conf/nginx.conf

RUN rm -fv nginx-1.8.0.tar.gz

EXPOSE 80

3. 创建镜像文件

docker build -t centos_nginx .    其中 . 代表Dockerfile 所在的文件的路径


以上是关于使用Dockerfile创建nginx服务容器镜像的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Dockerfile自定义镜像?

构建Docker容器实战

docker容器之dockerfile镜像

Dockerfile编写,容器部署项目,用nginx做负载均衡,私有仓库搭建

使用Dockerfile创建带编译安装znginx服务的Centos Docker镜像

Dockerfile 构建nginx镜像