Docker_构建nginx+php-fpm环境

构建nginx+php-fpm环境

下载nginx-1.15.7到本地目录

http://nginx.org/en/download.html

http://nginx.org/download/nginx-1.15.7.tar.gz

DockerFile去掉里面的#注释

FROM centos:centos7
MAINTAINER ZQL.com
ENV TIME_ZOME Asia/Shanghai
ARG WJ="nginx-1.15.7"
#wget http://nginx.org/download/nginx-1.15.7.tar.gz
 
#COPY nginx.conf /usr/local/nginx/
ADD $WJ.tar.gz /tmp
RUN yum -y install net-tools
RUN yum -y install gcc gcc-c++ make openssl-devel pcre-devel zlib-devel \
        && useradd -s /sbin/nologin nginx  \    
        && mkdir -p /usr/local/nginx \
        && cd /tmp/$WJ \
        && ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-stream --with-http_ssl_module --with-http_stub_status_module \
        && make -j 4 \
        && make install \
        && echo "${TIME_ZOME}" > /etc/timezone \
        && ln -sf /usr/share/zoneinfo/${TIME_ZOME} /etc/localtime \
        && rm -rf /tmp/nginx* \
        && ln -s /usr/local/nginx/sbin/nginx /usr/sbin/nginx  \
        && yum install -y epel-release  \
        && rpm -Uvh http://rpms.remirepo.net/enterprise/remi-release-7.rpm \
        && yum -y install yum-utils  \
        && yum-config-manager --enable remi-php72  \
        && yum -y install php php72-php-opcache  php72-php-ldap php72-php-odbc php72-php-pear php72-php-xml php72-php-xmlrpc php72-php-soap curl curl-devel  php72-php-mbstring php72-php-mysqlnd  php72-php-fpm  php72-php-gd \
        && sed -i "s/apache/nginx/g"  /etc/opt/remi/php72/php-fpm.d/www.conf \  
        && yum clean all \
        && yum -y remove gcc gcc-c++ make \
        && chmod -R 777 /var/opt/remi/php72/lib/php/session/  
  
 
WORKDIR /usr/local/nginx/
EXPOSE 80
CMD /opt/remi/php72/root/sbin/php-fpm  && nginx -g "daemon off;"  

创建镜像

 docker build -f .\DockerFile6 -t nginx_php_centos .

指定端口,启动镜像

docker run -it -p 8080:80  --name=myphp nginx_php_centos /bin/bash

访问网址

127.0.0.1:8080

在这里插入图片描述
还可以设置共享目录,这样在win代码就可以直接运行了 -v

发布了48 篇原创文章 · 获赞 31 · 访问量 4570

猜你喜欢

转载自blog.csdn.net/qq_39787367/article/details/103686272