14 lines
		
	
	
		
			334 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			334 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
version: "2"
 | 
						|
 | 
						|
services:
 | 
						|
  fabcal:
 | 
						|
    build: .
 | 
						|
    restart: unless-stopped
 | 
						|
    ports:
 | 
						|
      - 5000:5000
 | 
						|
    environment:
 | 
						|
      - CALENDAR_URL=webcal://some.host/somecal
 | 
						|
    # use the line below when running this behind reverse proxy (only if it sets the proxy headers, though)
 | 
						|
    #command: --proxy-headers --forwarded-allow-ips="*"
 | 
						|
 |