2016-07-25 07:14:19 +08:00
|
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Image Setup
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
#
|
2016-08-03 18:08:00 +08:00
|
|
|
# To edit the 'php-fpm' base Image, visit its repository on Github
|
|
|
|
# https://github.com/LaraDock/php-fpm
|
|
|
|
#
|
|
|
|
# To change its version, see the available Tags on the Docker Hub:
|
|
|
|
# https://hub.docker.com/r/laradock/php-fpm/tags/
|
|
|
|
#
|
2016-07-25 07:14:19 +08:00
|
|
|
|
2016-08-16 20:12:52 +08:00
|
|
|
FROM laradock/php-fpm:5.6--1.2
|
2016-05-14 09:50:47 +08:00
|
|
|
|
|
|
|
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
|
|
|
|
2016-07-25 07:14:19 +08:00
|
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
2016-07-27 09:22:31 +08:00
|
|
|
# Mandatory Software's Installation
|
2016-07-25 07:14:19 +08:00
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
#
|
2016-07-27 09:22:31 +08:00
|
|
|
# Mandatory Software's such as ("mcrypt", "pdo_mysql", "libssl-dev", ....)
|
|
|
|
# are installed on the base image 'laradock/php-fpm' image. If you want
|
|
|
|
# to add more Software's or remove existing one, you need to edit the
|
|
|
|
# base image (https://github.com/LaraDock/php-fpm).
|
2016-07-25 07:14:19 +08:00
|
|
|
#
|
|
|
|
|
2016-07-27 09:22:31 +08:00
|
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Optional Software's Installation
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Optional Software's will only be installed if you set them to `true`
|
|
|
|
# in the `docker-compose.yml` before the build.
|
2016-08-19 08:05:02 +08:00
|
|
|
# Example:
|
|
|
|
# - INSTALL_ZIP_ARCHIVE=true
|
2016-07-27 09:22:31 +08:00
|
|
|
#
|
2016-06-16 14:57:27 +08:00
|
|
|
|
2016-12-16 03:13:27 +08:00
|
|
|
#####################################
|
|
|
|
# SOAP:
|
|
|
|
#####################################
|
|
|
|
|
|
|
|
ARG INSTALL_SOAP=false
|
|
|
|
RUN if [ ${INSTALL_SOAP} = true ]; then \
|
|
|
|
# Install the soap extension
|
|
|
|
apt-get -y update && \
|
2017-02-08 06:21:30 +08:00
|
|
|
apt-get -y install libxml2-dev php-soap && \
|
2016-12-20 14:20:53 +08:00
|
|
|
docker-php-ext-install soap \
|
2016-12-16 03:13:27 +08:00
|
|
|
;fi
|
|
|
|
|
2016-07-25 12:27:15 +08:00
|
|
|
#####################################
|
2016-07-27 09:22:31 +08:00
|
|
|
# xDebug:
|
2016-07-25 12:27:15 +08:00
|
|
|
#####################################
|
|
|
|
|
2016-10-10 08:05:33 +08:00
|
|
|
ARG INSTALL_XDEBUG=false
|
2016-07-27 09:22:31 +08:00
|
|
|
RUN if [ ${INSTALL_XDEBUG} = true ]; then \
|
2016-08-15 22:01:47 +08:00
|
|
|
# Install the xdebug extension
|
2016-07-27 09:22:31 +08:00
|
|
|
pecl install xdebug && \
|
|
|
|
docker-php-ext-enable xdebug \
|
|
|
|
;fi
|
2016-08-19 08:05:02 +08:00
|
|
|
|
|
|
|
# Copy xdebug configration for remote debugging
|
|
|
|
COPY ./xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
|
2016-05-14 09:50:47 +08:00
|
|
|
|
2016-07-25 12:27:15 +08:00
|
|
|
#####################################
|
|
|
|
# MongoDB:
|
|
|
|
#####################################
|
|
|
|
|
2016-10-10 08:05:33 +08:00
|
|
|
ARG INSTALL_MONGO=false
|
2016-07-25 11:25:38 +08:00
|
|
|
RUN if [ ${INSTALL_MONGO} = true ]; then \
|
2016-08-15 22:01:47 +08:00
|
|
|
# Install the mongodb extension
|
|
|
|
pecl install mongodb && \
|
|
|
|
docker-php-ext-enable mongodb \
|
2016-07-25 11:25:38 +08:00
|
|
|
;fi
|
|
|
|
|
2016-08-14 15:53:08 +08:00
|
|
|
#####################################
|
|
|
|
# ZipArchive:
|
|
|
|
#####################################
|
|
|
|
|
2016-10-10 08:05:33 +08:00
|
|
|
ARG INSTALL_ZIP_ARCHIVE=false
|
2016-08-14 15:53:08 +08:00
|
|
|
RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
|
2016-08-15 22:01:47 +08:00
|
|
|
# Install the zip extension
|
|
|
|
pecl install zip && \
|
|
|
|
docker-php-ext-enable zip \
|
2016-08-14 15:53:08 +08:00
|
|
|
;fi
|
|
|
|
|
2016-12-22 03:01:51 +08:00
|
|
|
#####################################
|
|
|
|
# bcmath:
|
|
|
|
#####################################
|
|
|
|
|
|
|
|
ARG INSTALL_BCMATH=false
|
|
|
|
RUN if [ ${INSTALL_BCMATH} = true ]; then \
|
|
|
|
# Install the bcmath extension
|
|
|
|
docker-php-ext-install bcmath \
|
|
|
|
;fi
|
|
|
|
|
2016-08-16 17:31:52 +08:00
|
|
|
#####################################
|
|
|
|
# PHP Memcached:
|
|
|
|
#####################################
|
|
|
|
|
2016-10-10 08:05:33 +08:00
|
|
|
ARG INSTALL_MEMCACHED=false
|
2016-08-16 17:31:52 +08:00
|
|
|
RUN if [ ${INSTALL_MEMCACHED} = true ]; then \
|
|
|
|
# Install the php memcached extension
|
|
|
|
pecl install memcached && \
|
|
|
|
docker-php-ext-enable memcached \
|
|
|
|
;fi
|
|
|
|
|
2016-09-04 21:50:03 +08:00
|
|
|
#####################################
|
|
|
|
# PHP Aerospike:
|
|
|
|
#####################################
|
|
|
|
|
2016-10-10 08:05:33 +08:00
|
|
|
ARG INSTALL_AEROSPIKE_EXTENSION=false
|
2016-09-04 21:50:03 +08:00
|
|
|
ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION}
|
|
|
|
# Copy aerospike configration for remote debugging
|
|
|
|
COPY ./aerospike.ini /usr/local/etc/php/conf.d/aerospike.ini
|
|
|
|
RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \
|
|
|
|
# Install the php aerospike extension
|
|
|
|
curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/aerospike-client-php/archive/master.tar.gz" \
|
|
|
|
&& mkdir -p aerospike-client-php \
|
|
|
|
&& tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \
|
|
|
|
&& ( \
|
|
|
|
cd aerospike-client-php/src/aerospike \
|
|
|
|
&& phpize \
|
|
|
|
&& ./build.sh \
|
|
|
|
&& make install \
|
|
|
|
) \
|
|
|
|
&& rm /tmp/aerospike-client-php.tar.gz \
|
|
|
|
;fi
|
|
|
|
|
2016-08-17 03:13:58 +08:00
|
|
|
#####################################
|
|
|
|
# Opcache:
|
|
|
|
#####################################
|
2016-11-01 00:21:01 +08:00
|
|
|
|
2016-10-10 08:05:33 +08:00
|
|
|
ARG INSTALL_OPCACHE=false
|
2016-08-17 05:51:41 +08:00
|
|
|
RUN if [ ${INSTALL_OPCACHE} = true ]; then \
|
|
|
|
docker-php-ext-install opcache && \
|
|
|
|
docker-php-ext-enable opcache \
|
|
|
|
;fi
|
2016-08-17 03:13:58 +08:00
|
|
|
|
2016-09-15 22:47:58 +08:00
|
|
|
# Copy opcache configration
|
|
|
|
COPY ./opcache.ini /usr/local/etc/php/conf.d/opcache.ini
|
|
|
|
|
2016-11-01 00:21:01 +08:00
|
|
|
#####################################
|
|
|
|
# Codeigniter Modifications:
|
|
|
|
#####################################
|
|
|
|
|
|
|
|
ARG CODEIGNITER=false
|
|
|
|
RUN if [ ${CODEIGNITER} = true ]; then \
|
|
|
|
# Install Codeigniter PHP extentions requirements
|
|
|
|
docker-php-ext-install mysqli && \
|
|
|
|
docker-php-ext-install tokenizer \
|
|
|
|
;fi
|
|
|
|
|
2016-07-25 07:14:19 +08:00
|
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Final Touch
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
|
2016-07-27 09:22:31 +08:00
|
|
|
ADD ./laravel.ini /usr/local/etc/php/conf.d
|
|
|
|
ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/
|
|
|
|
|
2016-07-25 07:14:19 +08:00
|
|
|
RUN rm -r /var/lib/apt/lists/*
|
|
|
|
|
2016-05-14 09:50:47 +08:00
|
|
|
RUN usermod -u 1000 www-data
|
|
|
|
|
2016-11-01 07:28:25 +08:00
|
|
|
WORKDIR /var/www
|
2016-05-14 09:50:47 +08:00
|
|
|
|
|
|
|
CMD ["php-fpm"]
|
|
|
|
|
|
|
|
EXPOSE 9000
|