This repository has been archived on 2020-08-01. You can view files and clone it, but cannot push or open issues or pull requests.
nginx-proxy/Dockerfile

32 lines
1.2 KiB
Docker
Raw Normal View History

2014-07-11 17:59:45 +02:00
FROM ubuntu:14.04
2014-05-05 18:59:23 +02:00
MAINTAINER Jason Wilder jwilder@litl.com
# Install Nginx.
2014-07-11 17:59:45 +02:00
RUN echo "deb http://ppa.launchpad.net/nginx/stable/ubuntu trusty main" > /etc/apt/sources.list.d/nginx-stable-trusty.list
RUN echo "deb-src http://ppa.launchpad.net/nginx/stable/ubuntu trusty main" >> /etc/apt/sources.list.d/nginx-stable-trusty.list
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C300EE8C
2014-05-05 18:59:23 +02:00
RUN apt-get update
RUN apt-get install --only-upgrade bash
2014-07-11 17:59:45 +02:00
RUN apt-get install -y wget nginx
2014-05-05 18:59:23 +02:00
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
2014-06-07 21:53:16 +02:00
#fix for long server names
RUN sed -i 's/# server_names_hash_bucket/server_names_hash_bucket/g' /etc/nginx/nginx.conf
2014-06-08 18:10:11 +02:00
RUN wget -P /usr/local/bin https://godist.herokuapp.com/projects/ddollar/forego/releases/current/linux-amd64/forego
RUN chmod u+x /usr/local/bin/forego
2014-10-23 01:31:23 +02:00
ENV DOCKER_GEN_VERSION 0.3.4
RUN wget https://github.com/jwilder/docker-gen/releases/download/$DOCKER_GEN_VERSION/docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz
RUN tar -C /usr/local/bin -xvzf docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz
RUN mkdir /app
WORKDIR /app
ADD . /app
2014-05-05 18:59:23 +02:00
EXPOSE 80
ENV DOCKER_HOST unix:///tmp/docker.sock
CMD ["forego", "start", "-r"]