592ed499d7
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.
26 lines
673 B
Docker
26 lines
673 B
Docker
FROM ubuntu:12.04
|
|
MAINTAINER Jason Wilder jwilder@litl.com
|
|
|
|
# Install Nginx.
|
|
RUN apt-get update
|
|
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 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.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
|
|
|
|
EXPOSE 80
|
|
ENV DOCKER_HOST unix:///tmp/docker.sock
|
|
|
|
CMD ["/usr/bin/supervisord"]
|