mirror of
https://github.com/thib8956/nginx-proxy
synced 2025-07-01 06:15:45 +00:00
Improve port configuration
Should address #6. The port selection now works as follows: * If there is only 1 port exposed by the container, that port is used. * If there is a VIRTUAL_PORT env variable defined, that port is used. * Otherwise, default to port 80, if exposed.
This commit is contained in:
@ -7,15 +7,15 @@ RUN apt-get install -y python-software-properties wget supervisor
|
||||
RUN add-apt-repository -y ppa:nginx/stable
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y nginx
|
||||
RUN apt-get install -y nginx
|
||||
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
|
||||
|
||||
RUN mkdir /app
|
||||
WORKDIR /app
|
||||
ADD . /app
|
||||
|
||||
RUN wget https://github.com/jwilder/docker-gen/releases/download/0.1.2/docker-gen-linux-amd64-0.1.2.tar.gz
|
||||
RUN tar xvzf docker-gen-linux-amd64-0.1.2.tar.gz
|
||||
RUN wget https://github.com/jwilder/docker-gen/releases/download/0.2.1/docker-gen-linux-amd64-0.2.1.tar.gz
|
||||
RUN tar xvzf docker-gen-linux-amd64-0.2.1.tar.gz
|
||||
|
||||
RUN mkdir -p /var/log/supervisor
|
||||
ADD supervisor.conf /etc/supervisor/conf.d/supervisor.conf
|
||||
|
Reference in New Issue
Block a user