blackbirdchess-docker-dev/nginx/Dockerfile

16 lines
329 B
Docker
Raw Normal View History

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