mirror of
				https://github.com/TheAnachronism/docspell.git
				synced 2025-11-04 12:30:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			148 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			148 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine:latest
 | 
						|
 | 
						|
RUN apk add --no-cache exim curl
 | 
						|
USER exim
 | 
						|
COPY ./exim.conf /etc/exim/
 | 
						|
EXPOSE 25
 | 
						|
ENTRYPOINT ["exim"]
 | 
						|
CMD ["-bdf", "-v", "-q1m"]
 |