search
HomeBackend DevelopmentPHP TutorialDockerfile builds PHP image
Dockerfile builds PHP imageJun 06, 2019 pm 03:38 PM
dockerfilephpmirror

Dockerfile builds PHP image

1 搭建私有镜像仓库

1) 拉起镜像仓库
docker run -d \
-v /opt/registry:/var/lib/registry \
-p 5000:5000 \
--restart=always \
--name registry \
registry
2)修改配置仓库是之能够被我们使用
vi /etc/docker/daemon.json
{"registry-mirrors": ["http://04be47cf.m.daocloud.io"],"insecure-registries":["192.168.184.130:5000"]}
systemctl daemon-reload 
systemctl restart docker  
3)测试仓库是否可用
curl http://192.168.184.130:5000/v2/_catalog

{"repositories":[]} 说明成功

2 创建镜像构建目录

mkdir /tmp/php

3 下载php软件包

wget http://cn2.php.net/distributions/php-7.1.5.tar.gz -P /tmp/php

4 编写Dockerfile文件

cd /tmp/php
cat Dockerfile 
FROM centos:7
MAINTAINER swift
RUN yum install -y install epel-release && \
    yum -y install git wget lrzsz vim  libxml2 libxml2-devel openssl openssl-devel curl curl-devel libjpeg-turbo libjpeg-turbo-devel libpng-devel libpng freetype-devel freetype icu libicu-devel libicu libmcrypt libmcrypt-devel libxslt libxslt-devel php-mysql && \
    yum -y groupinstall "Development Tools" && \
    yum provides "*/applydeltarpm" && \ 
    yum install deltarpm -y && \   
    yum clean all && \
    groupadd www && \
    useradd -g www www   
ADD php-7.1.5.tar.gz   /usr/local/src/
RUN cd /usr/local/src/php-7.1.5 && \
    ./configure --prefix=/usr/local/php71 \
    --with-config-file-path=/usr/local/php71/etc \
    --with-config-file-scan-dir=/usr/local/php71/conf.d \
    --enable-fpm --with-fpm-user=www \
    --with-fpm-group=www \
    --with-mysql=mysqlnd \
    --with-mysqli=mysqlnd \
    --with-pdo-mysql=mysqlnd \
    --with-iconv-dir \
    --with-freetype-dir=/usr/local/freetype \
    --with-jpeg-dir \
    --with-png-dir \
    --with-zlib \
    --with-libxml-dir=/usr \
    --enable-xml \
    --disable-rpath \
    --enable-bcmath \
    --enable-shmop \
    --enable-sysvsem \
    --enable-inline-optimization \
    --with-curl \
    --enable-mbregex \
    --enable-mbstring \
    --with-mcrypt \ 
    --enable-ftp \
    --with-gd \
    --enable-gd-native-ttf \
    --with-openssl \
    --with-mhash \
    --enable-pcntl \
    --enable-sockets \
    --with-xmlrpc \
    --enable-zip \
    --enable-soap \
    --with-gettext \
    --disable-fileinfo \
    --enable-opcache \
    --enable-intl \
    --with-xsl && \
    make -j 4 && make install && \
    cp /usr/local/php71/etc/php-fpm.conf.default /usr/local/php71/etc/php-fpm.conf && \
    cp ./php.ini-production  /usr/local/php71/etc/php.ini && \
    cp /usr/local/php71/etc/php-fpm.d/www.conf.default /usr/local/php71/etc/php-fpm.d/www.conf && \
    cp ./sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm && \
    chmod +x /etc/init.d/php-fpm && \
    rm -rf /usr/loacl/src/php-7.1.5
EXPOSE 9000
CMD ["/etc/init.d/php-fpm","start"]

5 构建php镜像

docker build -t 192.168.184.130:5000/lnmp-7-php71:base .

6 查看查看已经构建的镜像并上传到私有仓库php视频教程

1)查看镜像
# docker images
REPOSITORY                           TAG                 IMAGE ID            CREATED             SIZE
192.168.184.130:5000/lnmp-7-php71    base                9c85344d010f        8 minutes ago       1.26GB
2)给镜像打tag
docker tag  192.168.184.130:5000/lnmp-7-php71:base 192.168.184.130:5000/lnmp-7-php71:v3
3)上传到私有仓库
docker push 192.168.184.130:5000/lnmp-7-php71:v3
4)查看镜像仓库
 curl http://192.168.184.130:5000/v2/lnmp-7-php71/tags/list
{"name":"lnmp-7-php71","tags":["base","v3","redis","redisv1","redisv2"]}

7 测试使用镜像

1) run起来一个php
docker run -d -p 9000:9000 --name php-test 192.168.184.130:5000/lnmp-7-php71:v3
2)查看docker是否运行
# docker ps | grep php-test
5ad6cbbaf728        192.168.184.130:5000/lnmp-7-php71:v3   "/bin/sh -c '/etc/in…"   5 minutes ago       Up 5 minutes        0.0.0.0:9000->9000/tcp, 9006/tcp   php-test
3)查看端口
# ss -anlptu | grep 9000
tcp    LISTEN     0      128      :::9000                 :::*                   users:(("docker-proxy",pid=7340,fd=4))
4)查看日志
# docker logs php-test -f
Starting php-fpm  done

8 添加redis扩展

1)创建php-redisDocker文件目录
#mkdir redis
2) 以php-test 192.168.184.130:5000/lnmp-7-php71:v3为基础镜像添加redis扩展
# cat Dockerfile 
FROM 192.168.184.130:5000/lnmp-7-php71:v3
MAINTAINER swift
RUN cd /usr/local/src && \
    git clone https://github.com/phpredis/phpredis.git phpredis71 && \
    cd phpredis71 && \
    /usr/local/php71/bin/phpize && \
    ./configure  --with-php-config=/usr/local/php71/bin/php-config && \
    make && make install 
3) build镜像
#docker build -t 192.168.184.130:5000/lnmp-7-php71:redis .
4)给镜像打tag
#docker tag 192.168.184.130:5000/lnmp-7-php71:redis 192.168.184.130:5000/lnmp-7-php71:redisv2
5)上传到私有仓库
#docker push 192.168.184.130:5000/lnmp-7-php71:redisv2
6)创建php.ini配置文件
#cat php.ini
extension=redis.so
7)创建测试容器验证
#docker run -d -p 9006:9000 -v /root/redis/php.ini:/usr/local/php71/etc/php.ini --name php-test-redis 192.168.184.130:5000/lnmp-7-php71:redisv2
8)查看redis模块是否加载
#docker exec -it php-test-redis bash -c  '/usr/local/php71/bin/php -m  | grep redis'
redis


##############################################################################################################################
kill -USR2 ps -ef | grep php-fpm | grep 'master process' | grep '/usr/local/php71/etc/php-fpm.conf' | awk -F ' ' '{print $2}'#
##############################################################################################################################

The above is the detailed content of Dockerfile builds PHP image. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software