2016-07-28 02:35:58 +02:00
|
|
|
FROM webdevops/apache:ubuntu-16.04
|
|
|
|
|
2018-03-16 10:34:47 +01:00
|
|
|
LABEL maintainer="Eric Pfeiffer <computerfr33k@users.noreply.github.com>"
|
2016-07-28 02:35:58 +02:00
|
|
|
|
2017-08-03 23:50:20 +02:00
|
|
|
ARG PHP_UPSTREAM_CONTAINER=php-fpm
|
|
|
|
ARG PHP_UPSTREAM_PORT=9000
|
2017-09-18 15:24:48 +02:00
|
|
|
ARG PHP_UPSTREAM_TIMEOUT=60
|
2018-03-18 10:34:15 +01:00
|
|
|
ARG DOCUMENT_ROOT=/var/www/
|
2016-07-28 02:35:58 +02:00
|
|
|
|
2017-08-03 23:50:20 +02:00
|
|
|
ENV WEB_PHP_SOCKET=${PHP_UPSTREAM_CONTAINER}:${PHP_UPSTREAM_PORT}
|
2016-07-28 02:35:58 +02:00
|
|
|
|
2018-03-18 10:34:15 +01:00
|
|
|
ENV WEB_DOCUMENT_ROOT=${DOCUMENT_ROOT}
|
2016-07-28 02:35:58 +02:00
|
|
|
|
2017-09-18 15:24:48 +02:00
|
|
|
ENV WEB_PHP_TIMEOUT=${PHP_UPSTREAM_TIMEOUT}
|
|
|
|
|
2016-07-28 02:35:58 +02:00
|
|
|
EXPOSE 80 443
|
|
|
|
|
2017-08-03 23:51:20 +02:00
|
|
|
WORKDIR /var/www/
|
2016-07-28 02:35:58 +02:00
|
|
|
|
2017-05-01 12:41:55 +02:00
|
|
|
COPY vhost.conf /etc/apache2/sites-enabled/vhost.conf
|
2017-03-09 03:26:47 +01:00
|
|
|
|
2016-07-28 02:35:58 +02:00
|
|
|
ENTRYPOINT ["/opt/docker/bin/entrypoint.sh"]
|
|
|
|
|
|
|
|
CMD ["supervisord"]
|