码迷,mamicode.com
首页 > 其他好文 > 详细

使用Dockerfile构建nginx镜像

时间:2020-06-13 11:22:27      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:nta   download   dock   exp   目录   efi   main   containe   rom   

一、创建一目录存放Dockerfile 、nginx 包,下载nginx源码包

 # mkdir  /tmp/nginx  &&  cd  /tmp/nginx &&  wget http://nginx.org/download/nginx-1.18.0.tar.gz

二、编辑Dockerfile 文件

 # vim /tmp/nginx/Dockerfile

内容如下:
FROM centos:7
MAINTAINER zhouzeheng
RUN yum install -y gcc gcc-c++ make openssl-devel pcre-devel
ADD nginx-1.18.0.tar.gz /tmp

RUN cd /tmp/nginx-1.18.0 && \
./configure --prefix=/usr/local/nginx && \
make -j 2 && \
make install
RUN rm -rf /tmp/nginx-1.18* && yum clean all

EXPOSE 80
CMD ["./usr/local/nginx/sbin/nginx", "-g", "daemon off;"]

三、使用Dockerfile 构建nginx 镜像

     # docker image build -t nginx-test:1.1  -f /tmp/nginx/Dockerfile   /tmp/nginx

四、使用刚构建的镜像创建容器

# dockers container run -itd --name test -p 8080:80   nginx-test:1.1

使用Dockerfile构建nginx镜像

标签:nta   download   dock   exp   目录   efi   main   containe   rom   

原文地址:https://blog.51cto.com/13667909/2504115

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!