docker:構建nginx+php-fpm鏡像(一):構建nginx自啓動鏡像

步驟一:手動安裝nginx環境,並記錄全過程:

#使用yum更新系統
yum -y update
 
#下面編譯安裝tengine,查看有哪些包須要安裝
#安裝wget包,用於獲取安裝軟件包
yum -y install wget
 
cd /usr/local/src
#下載nginx安裝包,並指定放置目錄/usr/local/src
wget http://tengine.taobao.org/download/tengine-2.1.2.tar.gz -P /usr/local/src/
#z匹配.gz  x解壓 f本地
tar -zxf tengine-2.1.2.tar.gz
 
#建立nginx須要的用戶和組
groupadd -r nginx
useradd -g nginx -M nginx
 
#tengine初次編譯
./configure --prefix=/usr/local/tengine \
--user=nginx --group=nginx
 
#報錯以及補充系統包:
yum -y install gcc pcre-devel openssl-devel
 
#初次編譯經過,增長nginx模塊配置再次編譯:
--with-http_realip_module  #nginx獲取客戶端真實IP的模塊
--with-http_sub_module  #用於替換網站頁面關鍵字--日常基本沒啥用
--with-http_gzip_static_module  #靜態緩存壓縮,用於減小流量
--with-http_gunzip_module  #爲不支持gzip模塊的客戶端提供解壓縮服務,用於節省空間減小IO
--with-http_ssl_module  #使nginx支持https
--with-pcre  #nginx支持pcre正則,主要是支持rewrite功能
--with-http_stub_status_module #用於監控nginx狀態
 
完整編譯命令以下:
 
./configure --prefix=/usr/local/tengine \
--user=nginx --group=nginx \
--with-http_realip_module \
--with-http_gzip_static_module \
--with-http_gunzip_module \
--with-pcre \
--with-http_stub_status_module \
--with-http_ssl_module
#編譯安裝
make & make install
 
#啓動nginx
/usr/local/tengine/sbin/nginx
 

步驟二:根據以上步驟構建dockerfile生成nginx鏡像

Dockerfile
 
###################################################
#Dockerfile to build mysqlDB container images
#base on centos
###################################################
#Set the base image to Centos6
FROM centos:6
#File Suthor
MAINTAINER liujian@wanbu.com.cn
 
#install basic rpm
RUN yum -y update
RUN yum -y install wget gcc pcre-devel openssl-devel
RUN wget http://tengine.taobao.org/download/tengine-2.1.2.tar.gz -P /usr/local/src/ \
&& groupadd -r nginx && useradd -g nginx -M nginx
RUN cd /usr/local/src/ \
&& tar -zxf tengine-2.1.2.tar.gz \
&& cd tengine-2.1.2/ \
&& ./configure --prefix=/usr/local/tengine --user=nginx --group=nginx --with-http_realip_module --with-http_gzip_static_module --with-http_gunzip_module --with-pcre --with-http_stub_status_module --with-http_ssl_module \
&& make && make install \
&& ln -s /usr/local/tengine/sbin/nginx /usr/sbin/nginx \
&& yum -y remove wget gcc pcre-devel openssl-devel
ADD nginx.conf /usr/local/tengine/conf/
EXPOSE 80
CMD ["nginx","-g","deamon off;"]

 

 
#制定Dokcerfile構建nginx鏡像
docker build -t nginx_test:v1.0 .
 
#使用鏡像建立容器,測試nginx運行狀況
docker run -itd -p 0.0.0.0:7788:80 --name nginx_image_test nginx_test:v1.0
 
#訪問正常,可是nginx配置文件沒法修改,只能啓動運行。
若是在測試環境須要修改配置文件重啓等,能夠使用:
#將dockerfile內部CMD ["nginx","-g","deamon off;"]替換爲
ENTRYPOINT /usr/sbin/nginx -c /etc/nginx/nginx.conf && /bin/bash
相關文章
相關標籤/搜索