2016-07-26 18:19:31 +02:00
|
|
|
FROM nginx:alpine
|
2016-05-06 16:04:02 +02:00
|
|
|
|
|
|
|
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
|
|
|
|
|
|
|
ADD nginx.conf /etc/nginx/
|
2016-08-15 23:14:05 +02:00
|
|
|
COPY sites/*.conf /etc/nginx/sites-available/
|
2016-05-06 16:04:02 +02:00
|
|
|
|
2016-07-26 19:41:52 +02:00
|
|
|
ARG PHP_UPSTREAM=php-fpm
|
2016-07-24 04:49:57 +02:00
|
|
|
|
2016-07-26 19:41:52 +02:00
|
|
|
RUN apk update \
|
|
|
|
&& apk upgrade \
|
|
|
|
&& apk add --no-cache bash \
|
|
|
|
&& adduser -D -H -u 1000 -s /bin/bash www-data \
|
|
|
|
&& rm /etc/nginx/conf.d/default.conf \
|
2016-07-26 18:19:31 +02:00
|
|
|
&& echo "upstream php-upstream { server ${PHP_UPSTREAM}:9000; }" > /etc/nginx/conf.d/upstream.conf
|
2016-05-06 16:04:02 +02:00
|
|
|
|
|
|
|
CMD ["nginx"]
|
|
|
|
|
|
|
|
EXPOSE 80 443
|