mirror of
				https://github.com/thib8956/nginx-proxy
				synced 2025-11-04 02:59:20 +00:00 
			
		
		
		
	* Adds exists template tag * Fixes generating files to volumes * Fixes inconsistency w/ -watch/-endpoint
		
			
				
	
	
		
			30 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM ubuntu:14.04
 | 
						|
MAINTAINER Jason Wilder jwilder@litl.com
 | 
						|
 | 
						|
# Install Nginx.
 | 
						|
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
 | 
						|
RUN apt-get update
 | 
						|
RUN apt-get install -y  wget nginx
 | 
						|
 | 
						|
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
 | 
						|
 | 
						|
#fix for long server names
 | 
						|
RUN sed -i 's/# server_names_hash_bucket/server_names_hash_bucket/g' /etc/nginx/nginx.conf
 | 
						|
 | 
						|
RUN mkdir /app
 | 
						|
WORKDIR /app
 | 
						|
ADD . /app
 | 
						|
 | 
						|
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
 | 
						|
 | 
						|
RUN wget https://github.com/jwilder/docker-gen/releases/download/0.3.2/docker-gen-linux-amd64-0.3.2.tar.gz
 | 
						|
RUN tar xvzf docker-gen-linux-amd64-0.3.2.tar.gz
 | 
						|
 | 
						|
EXPOSE 80
 | 
						|
ENV DOCKER_HOST unix:///tmp/docker.sock
 | 
						|
 | 
						|
CMD ["forego", "start", "-r"]
 |