mirror of
				https://github.com/optim-enterprises-bv/Mailu.git
				synced 2025-10-30 17:47:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			254 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			254 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:3.7
 | |
| 
 | |
| RUN apk add --no-cache nginx nginx-mod-mail python py-jinja2 certbot openssl
 | |
| 
 | |
| COPY conf /conf
 | |
| COPY *.py /
 | |
| 
 | |
| EXPOSE 80/tcp 443/tcp 110/tcp 143/tcp 465/tcp 587/tcp 993/tcp 995/tcp 25/tcp 10025/tcp 10143/tcp
 | |
| VOLUME ["/certs"]
 | |
| 
 | |
| CMD /start.py
 | 
