mirror of
				https://github.com/TheAnachronism/docspell.git
				synced 2025-10-29 20:30:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			209 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			209 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:latest
 | |
| LABEL maintainer="eikek0 <eike@docspell.org>"
 | |
| 
 | |
| ENV DB_TYPE=postgresql \
 | |
|   DB_HOST=db \
 | |
|   DB_PORT=5432 \
 | |
|   DB_NAME=dbname \
 | |
|   DB_USER=dbuser \
 | |
|   DB_PASS=dbpass
 | |
| 
 | |
| RUN apk add --no-cache tzdata
 |