forked from kasperisager/php-dockerized
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
91 lines (69 loc) · 2.8 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
################################################################################
# Base image
################################################################################
FROM nginx
################################################################################
# Build instructions
################################################################################
ENV TERM xterm
# Remove default nginx configs.
RUN rm -f /etc/nginx/conf.d/*
# Add Backports (needed for certbot)
RUN sh -c "echo -n 'deb http://ftp.debian.org/debian jessie-backports main' >> /etc/apt/sources.list.d/backports.list"
# Install packages
RUN apt-get update && apt-get install -my \
nano \
openssl \
supervisor \
curl \
wget \
php5-curl \
php5-fpm \
php5-gd \
php5-memcached \
php5-mysql \
php5-mcrypt \
php5-sqlite \
php5-xdebug \
php-apc \
certbot -t jessie-backports
# Ensure that PHP5 FPM is run as root.
RUN sed -i "s/user = www-data/user = root/" /etc/php5/fpm/pool.d/www.conf
RUN sed -i "s/group = www-data/group = root/" /etc/php5/fpm/pool.d/www.conf
# Pass all docker environment
RUN sed -i '/^;clear_env = no/s/^;//' /etc/php5/fpm/pool.d/www.conf
# Get access to FPM-ping page /ping
RUN sed -i '/^;ping\.path/s/^;//' /etc/php5/fpm/pool.d/www.conf
# Get access to FPM_Status page /status
RUN sed -i '/^;pm\.status_path/s/^;//' /etc/php5/fpm/pool.d/www.conf
# Prevent PHP Warning: 'xdebug' already loaded.
# XDebug loaded with the core
RUN sed -i '/.*xdebug.so$/s/^/;/' /etc/php5/mods-available/xdebug.ini
# Install HHVM
RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0x5a16e7281be7a449
RUN echo deb http://dl.hhvm.com/debian jessie main | tee /etc/apt/sources.list.d/hhvm.list
RUN apt-get update && apt-get install -y hhvm
ARG adminuser
ARG adminpass
# Generate the password
RUN sh -c "echo -n '$adminuser:' >> /etc/nginx/.htpasswd"
RUN sh -c "openssl passwd -apr1 $adminpass >> /etc/nginx/.htpasswd"
# Add configuration files
COPY conf/nginx.conf /etc/nginx/
COPY conf/default.vhost /etc/nginx/sites-enabled/default.vhost
COPY conf/supervisord.conf /etc/supervisor/conf.d/
COPY conf/php.ini /etc/php5/fpm/conf.d/40-custom.ini
# COPY ssl template certificate
COPY ssl /etc/nginx/ssl
################################################################################
# Volumes
################################################################################
#VOLUME ["/var/www"]
################################################################################
# Ports
################################################################################
EXPOSE 80 8080 443
################################################################################
# Entrypoint
################################################################################
ENTRYPOINT supervisord -c /etc/supervisor/conf.d/supervisord.conf