123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- #
- #--------------------------------------------------------------------------
- # Image Setup
- #--------------------------------------------------------------------------
- #
- # 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/
- #
- FROM laradock/php-fpm:7.0--1.2
- MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
- #
- #--------------------------------------------------------------------------
- # Mandatory Software's Installation
- #--------------------------------------------------------------------------
- #
- # 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).
- #
- #
- #--------------------------------------------------------------------------
- # 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.
- #
- # - INSTALL_XDEBUG= false
- # - INSTALL_MONGO= false
- # - INSTALL_ZIP_ARCHIVE= false
- # - INSTALL_MEMCACHED= false
- #
- #####################################
- # xDebug:
- #####################################
- ARG INSTALL_XDEBUG=true
- ENV INSTALL_XDEBUG ${INSTALL_XDEBUG}
- RUN if [ ${INSTALL_XDEBUG} = true ]; then \
- # Install the xdebug extension
- pecl install xdebug && \
- docker-php-ext-enable xdebug \
- ;fi
- # ADD for REMOTE debugging
- COPY ./xdebug_settings_only.ini /usr/local/etc/php/conf.d/xdebug_settings_only.ini
- #####################################
- # MongoDB:
- #####################################
- ARG INSTALL_MONGO=true
- ENV INSTALL_MONGO ${INSTALL_MONGO}
- RUN if [ ${INSTALL_MONGO} = true ]; then \
- # Install the mongodb extension
- pecl install mongodb && \
- docker-php-ext-enable mongodb \
- ;fi
- #####################################
- # ZipArchive:
- #####################################
- ARG INSTALL_ZIP_ARCHIVE=true
- ENV INSTALL_ZIP_ARCHIVE ${INSTALL_ZIP_ARCHIVE}
- RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
- # Install the zip extension
- pecl install zip && \
- docker-php-ext-enable zip \
- ;fi
- #####################################
- # PHP Memcached:
- #####################################
- ARG INSTALL_MEMCACHED=true
- ENV INSTALL_MEMCACHED ${INSTALL_MEMCACHED}
- RUN if [ ${INSTALL_MEMCACHED} = true ]; then \
- # Install the php memcached extension
- curl -L -o /tmp/memcached.tar.gz "https://github.com/php-memcached-dev/php-memcached/archive/php7.tar.gz" \
- && mkdir -p memcached \
- && tar -C memcached -zxvf /tmp/memcached.tar.gz --strip 1 \
- && ( \
- cd memcached \
- && phpize \
- && ./configure \
- && make -j$(nproc) \
- && make install \
- ) \
- && rm -r memcached \
- && rm /tmp/memcached.tar.gz \
- && docker-php-ext-enable memcached \
- ;fi
- #####################################
- # Opcache:
- #####################################
- ARG INSTALL_OPCACHE=true
- ENV INSTALL_OPCACHE ${INSTALL_OPCACHE}
- RUN if [ ${INSTALL_OPCACHE} = true ]; then \
- docker-php-ext-install opcache && \
- docker-php-ext-enable opcache \
- ;fi
- #
- #--------------------------------------------------------------------------
- # Final Touch
- #--------------------------------------------------------------------------
- #
- ADD ./laravel.ini /usr/local/etc/php/conf.d
- ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/
- RUN rm -r /var/lib/apt/lists/*
- RUN usermod -u 1000 www-data
- WORKDIR /var/www/laravel
- CMD ["php-fpm"]
- EXPOSE 9000
|