You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			238 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			238 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| #
 | |
| # Dockerfile for rtmp-server
 | |
| #
 | |
| 
 | |
| FROM alpine
 | |
| MAINTAINER kev <noreply@easypi.pro>
 | |
| 
 | |
| RUN apk add --no-cache nginx-rtmp
 | |
| 
 | |
| COPY nginx.conf /etc/nginx/nginx.conf
 | |
| COPY html /var/lib/nginx/html
 | |
| 
 | |
| EXPOSE 80 1935
 | |
| 
 | |
| CMD ["nginx", "-g", "daemon off;"]
 |