-
-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from devilbox/release-0.13
New container: PHP 5.3
- Loading branch information
Showing
21 changed files
with
1,145 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
# Auto-generated via Ansible: edit build/ansible/DOCKERFILES/Dockerfile-base.j2 instead. | ||
FROM devilbox/php-fpm-5.3 | ||
MAINTAINER "cytopia" <[email protected]> | ||
|
||
|
||
### | ||
### Labels | ||
### | ||
LABEL \ | ||
name="cytopia's PHP-FPM 5.3 Image" \ | ||
image="devilbox/php-fpm" \ | ||
tag="5.3-base" \ | ||
vendor="devilbox" \ | ||
license="MIT" | ||
|
||
|
||
### | ||
### Envs | ||
### | ||
ENV MY_USER="devilbox" \ | ||
MY_GROUP="devilbox" \ | ||
MY_UID="1000" \ | ||
MY_GID="1000" | ||
|
||
|
||
### | ||
### User/Group | ||
### | ||
RUN set -x \ | ||
&& groupadd -g ${MY_GID} -r ${MY_GROUP} \ | ||
&& useradd -u ${MY_UID} -m -s /bin/bash -g ${MY_GROUP} ${MY_USER} | ||
|
||
|
||
### | ||
### Upgrade (install ps) | ||
### | ||
RUN set -x \ | ||
&& apt-get update \ | ||
&& apt-get upgrade -y \ | ||
&& apt-get install --no-install-recommends --no-install-suggests -y procps \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
|
||
### | ||
### Configure | ||
### | ||
RUN set -x \ | ||
&& rm -rf /usr/local/etc/php-fpm.d \ | ||
&& mkdir -p /usr/local/etc/php-fpm.d \ | ||
&& mkdir -p /var/lib/php/session \ | ||
&& mkdir -p /var/lib/php/wsdlcache \ | ||
&& chown -R devilbox:devilbox /var/lib/php/session \ | ||
&& chown -R devilbox:devilbox /var/lib/php/wsdlcache | ||
|
||
|
||
### | ||
### Copy files | ||
### | ||
COPY ./data/docker-entrypoint.sh /docker-entrypoint.sh | ||
COPY ./data/docker-entrypoint.d /docker-entrypoint.d | ||
COPY ./data/php-fpm.conf /usr/local/etc/php-fpm.conf | ||
COPY ./data/php-fpm.d /usr/local/etc/php-fpm.d | ||
COPY ./data/php-fpm.d-docker-5.3.conf /usr/local/etc/php-fpm.d/docker.conf | ||
|
||
|
||
### | ||
### Verify | ||
### | ||
RUN set -x \ | ||
&& php -v | grep -oE 'PHP\s[.0-9]+' | grep -oE '[.0-9]+' | grep '^5.3' \ | ||
&& /usr/local/sbin/php-fpm --test \ | ||
&& PHP_ERROR="$( php -v 2>&1 1>/dev/null )" \ | ||
&& if [ -n "${PHP_ERROR}" ]; then echo "${PHP_ERROR}"; false; fi | ||
|
||
|
||
### | ||
### Ports | ||
### | ||
EXPOSE 9000 | ||
|
||
|
||
### | ||
### Entrypoint | ||
### | ||
ENTRYPOINT ["/docker-entrypoint.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[www] | ||
; Keep env variables set by docker | ||
;clear_env = no | ||
|
||
; Redirect worker stdout and stderr into main error log. If not set, stdout and | ||
; stderr will be redirected to /dev/null according to FastCGI specs. | ||
; Note: on highloaded environement, this can cause some delay in the page | ||
; process time (several ms). | ||
; Default Value: no | ||
catch_workers_output = yes |
Oops, something went wrong.