forked from kasperisager/php-dockerized
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
67 lines (55 loc) · 2.3 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
################################################################################
# Base image
################################################################################
FROM nginx
################################################################################
# Build instructions
################################################################################
# Remove default nginx configs.
# Install packages
RUN rm -f /etc/nginx/conf.d/* \
&& mkdir -p /run/php /run/hhvm \
&& apt-get update && apt-get upgrade -y && apt-get install -my \
supervisor \
curl \
wget \
php-curl \
php-fpm \
php-gd \
php-memcached \
php-mysql \
php-mcrypt \
php-sqlite3 \
php-xdebug \
php-apcu
# Install HHVM
RUN echo "deb http://deb.debian.org/debian sid main" >> /etc/apt/sources.list \
&& apt-get update && apt-get install -y hhvm
# Ensure that PHP5 FPM is run as root.
# Pass all docker environment
# Get access to FPM-ping page /ping
# Get access to FPM_Status page /status
# Prevent PHP Warning: 'xdebug' already loaded.
# XDebug loaded with the core
RUN sed -i "s/user = www-data/user = root/" /etc/php/7.0/fpm/pool.d/www.conf \
&& sed -i "s/group = www-data/group = root/" /etc/php/7.0/fpm/pool.d/www.conf \
&& sed -i '/^;clear_env = no/s/^;//' /etc/php/7.0/fpm/pool.d/www.conf \
&& sed -i '/^;ping\.path/s/^;//' /etc/php/7.0/fpm/pool.d/www.conf \
&& sed -i '/^;pm\.status_path/s/^;//' /etc/php/7.0/fpm/pool.d/www.conf \
&& sed -i '/.*xdebug.so$/s/^/;/' /etc/php/7.0/mods-available/xdebug.ini
# Add configuration files
COPY conf/nginx.conf /etc/nginx/
COPY conf/supervisord.conf /etc/supervisor/conf.d/
COPY conf/php.ini /etc/php/7.0/fpm/conf.d/40-custom.ini
################################################################################
# Volumes
################################################################################
VOLUME ["/var/www", "/etc/nginx/conf.d"]
################################################################################
# Ports
################################################################################
EXPOSE 80 443 9000
################################################################################
# Entrypoint
################################################################################
ENTRYPOINT ["/usr/bin/supervisord"]