Page MenuHomeDevCentral

No OneTemporary

diff --git a/Dockerfile b/Dockerfile
index 4d68dbe..51ba7dd 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,80 +1,91 @@
#
# Nasqueron - Base nginx / php-fpm image
#
FROM debian:jessie
MAINTAINER Sébastien Santoro aka Dereckson <dereckson+nasqueron-docker@espace-win.org>
# Environment
ENV PHP_VERSION 5.6.8
ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=app --with-fpm-group=app
ENV PHP_INI_DIR /usr/local/etc/php
# Required packages for php-fpm and nginx
ENV PHP_BUILD_DEPS bzip2 \
file \
libbz2-dev \
libcurl4-openssl-dev \
libjpeg-dev \
libmcrypt-dev \
libpng12-dev \
libreadline6-dev \
libssl-dev \
libxml2-dev
RUN apt-get update && apt-get install -y ca-certificates curl libxml2 autoconf \
gcc libc-dev make pkg-config nginx-full $PHP_BUILD_DEPS $PHP_EXTRA_BUILD_DEPS \
--no-install-recommends && rm -r /var/lib/apt/lists/*
# PHP build and installation
RUN gpg --keyserver pool.sks-keyservers.net --recv-keys 6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3 0BD78B5F97500D450838F95DFE857D9A90D90EC1
RUN mkdir -p $PHP_INI_DIR/conf.d
RUN set -x \
&& curl -SL "http://php.net/get/php-$PHP_VERSION.tar.bz2/from/this/mirror" -o php.tar.bz2 \
&& curl -SL "http://php.net/get/php-$PHP_VERSION.tar.bz2.asc/from/this/mirror" -o php.tar.bz2.asc \
&& gpg --verify php.tar.bz2.asc \
&& mkdir -p /usr/src/php \
&& tar -xof php.tar.bz2 -C /usr/src/php --strip-components=1 \
&& rm php.tar.bz2* \
&& cd /usr/src/php \
&& ./configure \
--with-config-file-path="$PHP_INI_DIR" \
--with-config-file-scan-dir="$PHP_INI_DIR/conf.d" \
$PHP_EXTRA_CONFIGURE_ARGS \
--disable-cgi \
--enable-mysqlnd \
--enable-bcmath \
--enable-bz2 \
--enable-calendar \
--with-curl \
--with-gd \
--enable-mbstring \
--with-mcrypt \
--with-mysqli \
--with-pdo-mysql \
--enable-pcntl \
--with-openssl \
--with-readline \
--with-zlib \
&& make -j"$(nproc)" \
&& make install \
&& { find /usr/local/bin /usr/local/sbin -type f -executable -exec strip --strip-all '{}' + || true; } \
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -o APT::AutoRemove::SuggestsImportant=false $buildDeps \
&& make clean
RUN groupadd -r app -g 433 && \
mkdir /home/app && \
mkdir -p /var/wwwroot/default && \
useradd -u 431 -r -g app -d /home/app -s /sbin/nologin -c "Docker image user for web application" app && \
chown -R app:app /home/app /var/wwwroot/default && \
chmod 700 /home/app && \
chmod 711 /var/wwwroot/default
+#Configuration
COPY docker-php-ext-* /usr/local/bin/
COPY php-fpm.conf /usr/local/etc/
COPY date.ini /usr/local/etc/php/conf.d/
COPY nginx-default-vhost.conf /etc/nginx/sites-available/default
+#Docker properties
VOLUME ["/var/wwwroot/default", "/etc/nginx"]
EXPOSE 80
EXPOSE 443
+
+CMD ["/usr/sbin/runsvdir-start"]
+
+# To move infra
+RUN apt-get update && apt-get install -y \
+ runit nano less tmux wget \
+ --no-install-recommends && rm -r /var/lib/apt/lists/*
+RUN echo "\n\ndaemon off;" >> /etc/nginx/nginx.conf
+COPY service /etc/service
diff --git a/service/nginx/run b/service/nginx/run
new file mode 100755
index 0000000..61e04b9
--- /dev/null
+++ b/service/nginx/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+exec 2>&1
+exec /usr/sbin/nginx
diff --git a/service/php-fpm/run b/service/php-fpm/run
new file mode 100755
index 0000000..ed85b6a
--- /dev/null
+++ b/service/php-fpm/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+exec 2>&1
+exec /usr/local/sbin/php-fpm --nodaemonize

File Metadata

Mime Type
text/x-diff
Expires
Mon, Nov 25, 18:10 (11 h, 23 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2260684
Default Alt Text
(3 KB)

Event Timeline