Skip to content

Commit 80f8551

Browse files
committed
Add FPM variant
1 parent 969f7a8 commit 80f8551

17 files changed

+517
-6
lines changed

5.4/fpm/Dockerfile

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
FROM debian:jessie
2+
3+
# persistent / runtime deps
4+
RUN apt-get update && apt-get install -y ca-certificates curl libxml2 --no-install-recommends && rm -r /var/lib/apt/lists/*
5+
6+
# phpize deps
7+
RUN apt-get update && apt-get install -y autoconf gcc make pkg-config --no-install-recommends && rm -r /var/lib/apt/lists/*
8+
9+
ENV PHP_INI_DIR /usr/local/etc/php
10+
RUN mkdir -p $PHP_INI_DIR/conf.d
11+
12+
##<autogenerated>##
13+
ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data
14+
##</autogenerated>##
15+
16+
RUN gpg --keyserver pgp.mit.edu --recv-keys F38252826ACD957EF380D39F2F7956BC5DA04B5D
17+
18+
ENV PHP_VERSION 5.4.34
19+
20+
# --enable-mysqlnd is included below because it's harder to compile after the fact the extensions are (since it's a plugin for several extensions, not an extension in itself)
21+
RUN buildDeps=" \
22+
$PHP_EXTRA_BUILD_DEPS \
23+
bzip2 \
24+
file \
25+
libcurl4-openssl-dev \
26+
libreadline6-dev \
27+
libssl-dev \
28+
libxml2-dev \
29+
"; \
30+
set -x \
31+
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* \
32+
&& curl -SL "http://php.net/get/php-$PHP_VERSION.tar.bz2/from/this/mirror" -o php.tar.bz2 \
33+
&& curl -SL "http://php.net/get/php-$PHP_VERSION.tar.bz2.asc/from/this/mirror" -o php.tar.bz2.asc \
34+
&& gpg --verify php.tar.bz2.asc \
35+
&& mkdir -p /usr/src/php \
36+
&& tar -xf php.tar.bz2 -C /usr/src/php --strip-components=1 \
37+
&& rm php.tar.bz2* \
38+
&& cd /usr/src/php \
39+
&& ./configure \
40+
--with-config-file-path="$PHP_INI_DIR" \
41+
--with-config-file-scan-dir="$PHP_INI_DIR/conf.d" \
42+
$PHP_EXTRA_CONFIGURE_ARGS \
43+
--disable-cgi \
44+
--enable-mysqlnd \
45+
--with-curl \
46+
--with-openssl \
47+
--with-readline \
48+
--with-zlib \
49+
&& make -j"$(nproc)" \
50+
&& make install \
51+
&& { find /usr/local/bin /usr/local/sbin -type f -executable -exec strip --strip-all '{}' + || true; } \
52+
&& apt-get purge -y --auto-remove $buildDeps \
53+
&& make clean
54+
55+
COPY docker-php-ext-* /usr/local/bin/
56+
57+
##<autogenerated>##
58+
WORKDIR /var/www/html
59+
COPY php-fpm.conf /usr/local/etc/
60+
61+
EXPOSE 9000
62+
CMD ["php-fpm"]
63+
##</autogenerated>##

5.4/fpm/docker-php-ext-configure

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
set -e
3+
4+
ext="$1"
5+
extDir="/usr/src/php/ext/$ext"
6+
if [ -z "$ext" -o ! -d "$extDir" ]; then
7+
echo >&2 "usage: $0 ext-name [configure flags]"
8+
echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"
9+
echo >&2
10+
echo >&2 'Possible values for ext-name:'
11+
echo >&2 $(find /usr/src/php/ext -mindepth 2 -maxdepth 2 -type f -name 'config.m4' | cut -d/ -f6 | sort)
12+
exit 1
13+
fi
14+
shift
15+
16+
set -x
17+
cd "$extDir"
18+
phpize
19+
./configure "$@"

5.4/fpm/docker-php-ext-install

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
#!/bin/bash
2+
set -e
3+
4+
cd /usr/src/php/ext
5+
6+
usage() {
7+
echo "usage: $0 ext-name [ext-name ...]"
8+
echo " ie: $0 gd mysqli"
9+
echo " $0 pdo pdo_mysql"
10+
echo
11+
echo 'if custom ./configure arguments are necessary, see docker-php-ext-configure'
12+
echo
13+
echo 'Possible values for ext-name:'
14+
echo $(find /usr/src/php/ext -mindepth 2 -maxdepth 2 -type f -name 'config.m4' | cut -d/ -f6 | sort)
15+
}
16+
17+
exts=()
18+
while [ $# -gt 0 ]; do
19+
ext="$1"
20+
shift
21+
if [ -z "$ext" ]; then
22+
continue
23+
fi
24+
if [ ! -d "$ext" ]; then
25+
echo >&2 "error: $(pwd -P)/$ext does not exist"
26+
echo >&2
27+
usage >&2
28+
exit 1
29+
fi
30+
exts+=( "$ext" )
31+
done
32+
33+
if [ "${#exts[@]}" -eq 0 ]; then
34+
usage >&2
35+
exit 1
36+
fi
37+
38+
for ext in "${exts[@]}"; do
39+
(
40+
cd "$ext"
41+
[ -e Makefile ] || docker-php-ext-configure "$ext"
42+
make
43+
make install
44+
ini="/usr/local/etc/php/conf.d/docker-php-ext-$ext.ini"
45+
for module in modules/*.so; do
46+
if [ -f "$module" ]; then
47+
line="extension=$(basename "$module")"
48+
if ! grep -q "$line" "$ini"; then
49+
echo "$line" >> "/usr/local/etc/php/conf.d/ext-$ext.ini"
50+
fi
51+
fi
52+
done
53+
make clean
54+
)
55+
done

5.4/fpm/php-fpm.conf

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
; This file was initially adapated from the output of: (on PHP 5.6)
2+
; grep -vE '^;|^ *$' /usr/local/etc/php-fpm.conf.default
3+
4+
[global]
5+
6+
error_log = /proc/self/fd/2
7+
daemonize = no
8+
9+
[www]
10+
11+
; if we send this to /proc/self/fd/1, it never appears
12+
access.log = /proc/self/fd/2
13+
14+
user = www-data
15+
group = www-data
16+
17+
listen = 9000
18+
19+
pm = dynamic
20+
pm.max_children = 5
21+
pm.start_servers = 2
22+
pm.min_spare_servers = 1
23+
pm.max_spare_servers = 3

5.5/fpm/Dockerfile

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
FROM debian:jessie
2+
3+
# persistent / runtime deps
4+
RUN apt-get update && apt-get install -y ca-certificates curl libxml2 --no-install-recommends && rm -r /var/lib/apt/lists/*
5+
6+
# phpize deps
7+
RUN apt-get update && apt-get install -y autoconf gcc make pkg-config --no-install-recommends && rm -r /var/lib/apt/lists/*
8+
9+
ENV PHP_INI_DIR /usr/local/etc/php
10+
RUN mkdir -p $PHP_INI_DIR/conf.d
11+
12+
##<autogenerated>##
13+
ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data
14+
##</autogenerated>##
15+
16+
RUN gpg --keyserver pgp.mit.edu --recv-keys 0BD78B5F97500D450838F95DFE857D9A90D90EC1 0B96609E270F565C13292B24C13C70B87267B52D
17+
18+
ENV PHP_VERSION 5.5.18
19+
20+
# --enable-mysqlnd is included below because it's harder to compile after the fact the extensions are (since it's a plugin for several extensions, not an extension in itself)
21+
RUN buildDeps=" \
22+
$PHP_EXTRA_BUILD_DEPS \
23+
bzip2 \
24+
file \
25+
libcurl4-openssl-dev \
26+
libreadline6-dev \
27+
libssl-dev \
28+
libxml2-dev \
29+
"; \
30+
set -x \
31+
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* \
32+
&& curl -SL "http://php.net/get/php-$PHP_VERSION.tar.bz2/from/this/mirror" -o php.tar.bz2 \
33+
&& curl -SL "http://php.net/get/php-$PHP_VERSION.tar.bz2.asc/from/this/mirror" -o php.tar.bz2.asc \
34+
&& gpg --verify php.tar.bz2.asc \
35+
&& mkdir -p /usr/src/php \
36+
&& tar -xf php.tar.bz2 -C /usr/src/php --strip-components=1 \
37+
&& rm php.tar.bz2* \
38+
&& cd /usr/src/php \
39+
&& ./configure \
40+
--with-config-file-path="$PHP_INI_DIR" \
41+
--with-config-file-scan-dir="$PHP_INI_DIR/conf.d" \
42+
$PHP_EXTRA_CONFIGURE_ARGS \
43+
--disable-cgi \
44+
--enable-mysqlnd \
45+
--with-curl \
46+
--with-openssl \
47+
--with-readline \
48+
--with-zlib \
49+
&& make -j"$(nproc)" \
50+
&& make install \
51+
&& { find /usr/local/bin /usr/local/sbin -type f -executable -exec strip --strip-all '{}' + || true; } \
52+
&& apt-get purge -y --auto-remove $buildDeps \
53+
&& make clean
54+
55+
COPY docker-php-ext-* /usr/local/bin/
56+
57+
##<autogenerated>##
58+
WORKDIR /var/www/html
59+
COPY php-fpm.conf /usr/local/etc/
60+
61+
EXPOSE 9000
62+
CMD ["php-fpm"]
63+
##</autogenerated>##

5.5/fpm/docker-php-ext-configure

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
set -e
3+
4+
ext="$1"
5+
extDir="/usr/src/php/ext/$ext"
6+
if [ -z "$ext" -o ! -d "$extDir" ]; then
7+
echo >&2 "usage: $0 ext-name [configure flags]"
8+
echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"
9+
echo >&2
10+
echo >&2 'Possible values for ext-name:'
11+
echo >&2 $(find /usr/src/php/ext -mindepth 2 -maxdepth 2 -type f -name 'config.m4' | cut -d/ -f6 | sort)
12+
exit 1
13+
fi
14+
shift
15+
16+
set -x
17+
cd "$extDir"
18+
phpize
19+
./configure "$@"

5.5/fpm/docker-php-ext-install

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
#!/bin/bash
2+
set -e
3+
4+
cd /usr/src/php/ext
5+
6+
usage() {
7+
echo "usage: $0 ext-name [ext-name ...]"
8+
echo " ie: $0 gd mysqli"
9+
echo " $0 pdo pdo_mysql"
10+
echo
11+
echo 'if custom ./configure arguments are necessary, see docker-php-ext-configure'
12+
echo
13+
echo 'Possible values for ext-name:'
14+
echo $(find /usr/src/php/ext -mindepth 2 -maxdepth 2 -type f -name 'config.m4' | cut -d/ -f6 | sort)
15+
}
16+
17+
exts=()
18+
while [ $# -gt 0 ]; do
19+
ext="$1"
20+
shift
21+
if [ -z "$ext" ]; then
22+
continue
23+
fi
24+
if [ ! -d "$ext" ]; then
25+
echo >&2 "error: $(pwd -P)/$ext does not exist"
26+
echo >&2
27+
usage >&2
28+
exit 1
29+
fi
30+
exts+=( "$ext" )
31+
done
32+
33+
if [ "${#exts[@]}" -eq 0 ]; then
34+
usage >&2
35+
exit 1
36+
fi
37+
38+
for ext in "${exts[@]}"; do
39+
(
40+
cd "$ext"
41+
[ -e Makefile ] || docker-php-ext-configure "$ext"
42+
make
43+
make install
44+
ini="/usr/local/etc/php/conf.d/docker-php-ext-$ext.ini"
45+
for module in modules/*.so; do
46+
if [ -f "$module" ]; then
47+
line="extension=$(basename "$module")"
48+
if ! grep -q "$line" "$ini"; then
49+
echo "$line" >> "/usr/local/etc/php/conf.d/ext-$ext.ini"
50+
fi
51+
fi
52+
done
53+
make clean
54+
)
55+
done

5.5/fpm/php-fpm.conf

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
; This file was initially adapated from the output of: (on PHP 5.6)
2+
; grep -vE '^;|^ *$' /usr/local/etc/php-fpm.conf.default
3+
4+
[global]
5+
6+
error_log = /proc/self/fd/2
7+
daemonize = no
8+
9+
[www]
10+
11+
; if we send this to /proc/self/fd/1, it never appears
12+
access.log = /proc/self/fd/2
13+
14+
user = www-data
15+
group = www-data
16+
17+
listen = 9000
18+
19+
pm = dynamic
20+
pm.max_children = 5
21+
pm.start_servers = 2
22+
pm.min_spare_servers = 1
23+
pm.max_spare_servers = 3

5.6/fpm/Dockerfile

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
FROM debian:jessie
2+
3+
# persistent / runtime deps
4+
RUN apt-get update && apt-get install -y ca-certificates curl libxml2 --no-install-recommends && rm -r /var/lib/apt/lists/*
5+
6+
# phpize deps
7+
RUN apt-get update && apt-get install -y autoconf gcc make pkg-config --no-install-recommends && rm -r /var/lib/apt/lists/*
8+
9+
ENV PHP_INI_DIR /usr/local/etc/php
10+
RUN mkdir -p $PHP_INI_DIR/conf.d
11+
12+
##<autogenerated>##
13+
ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data
14+
##</autogenerated>##
15+
16+
RUN gpg --keyserver pgp.mit.edu --recv-keys 6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3 0BD78B5F97500D450838F95DFE857D9A90D90EC1
17+
18+
ENV PHP_VERSION 5.6.2
19+
20+
# --enable-mysqlnd is included below because it's harder to compile after the fact the extensions are (since it's a plugin for several extensions, not an extension in itself)
21+
RUN buildDeps=" \
22+
$PHP_EXTRA_BUILD_DEPS \
23+
bzip2 \
24+
file \
25+
libcurl4-openssl-dev \
26+
libreadline6-dev \
27+
libssl-dev \
28+
libxml2-dev \
29+
"; \
30+
set -x \
31+
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* \
32+
&& curl -SL "http://php.net/get/php-$PHP_VERSION.tar.bz2/from/this/mirror" -o php.tar.bz2 \
33+
&& curl -SL "http://php.net/get/php-$PHP_VERSION.tar.bz2.asc/from/this/mirror" -o php.tar.bz2.asc \
34+
&& gpg --verify php.tar.bz2.asc \
35+
&& mkdir -p /usr/src/php \
36+
&& tar -xf php.tar.bz2 -C /usr/src/php --strip-components=1 \
37+
&& rm php.tar.bz2* \
38+
&& cd /usr/src/php \
39+
&& ./configure \
40+
--with-config-file-path="$PHP_INI_DIR" \
41+
--with-config-file-scan-dir="$PHP_INI_DIR/conf.d" \
42+
$PHP_EXTRA_CONFIGURE_ARGS \
43+
--disable-cgi \
44+
--enable-mysqlnd \
45+
--with-curl \
46+
--with-openssl \
47+
--with-readline \
48+
--with-zlib \
49+
&& make -j"$(nproc)" \
50+
&& make install \
51+
&& { find /usr/local/bin /usr/local/sbin -type f -executable -exec strip --strip-all '{}' + || true; } \
52+
&& apt-get purge -y --auto-remove $buildDeps \
53+
&& make clean
54+
55+
COPY docker-php-ext-* /usr/local/bin/
56+
57+
##<autogenerated>##
58+
WORKDIR /var/www/html
59+
COPY php-fpm.conf /usr/local/etc/
60+
61+
EXPOSE 9000
62+
CMD ["php-fpm"]
63+
##</autogenerated>##

0 commit comments

Comments
 (0)