2016-07-26 11:19:31 -05:00
|
|
|
FROM nginx:alpine
|
2016-05-06 17:04:02 +03:00
|
|
|
|
|
|
|
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
|
|
|
|
|
|
|
ADD nginx.conf /etc/nginx/
|
2016-07-26 11:19:31 -05:00
|
|
|
ADD laravel.conf /etc/nginx/conf.d/laravel.conf
|
2016-05-06 17:04:02 +03:00
|
|
|
|
2016-07-24 02:49:57 +00:00
|
|
|
ARG PHP_UPSTREAM
|
|
|
|
|
2016-07-26 11:19:31 -05:00
|
|
|
RUN rm /etc/nginx/conf.d/default.conf \
|
|
|
|
&& echo "upstream php-upstream { server ${PHP_UPSTREAM}:9000; }" > /etc/nginx/conf.d/upstream.conf
|
2016-05-06 17:04:02 +03:00
|
|
|
|
|
|
|
CMD ["nginx"]
|
|
|
|
|
|
|
|
EXPOSE 80 443
|