26 lines
		
	
	
		
			505 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			505 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| services:
 | |
|   heimdall:
 | |
|     image: lscr.io/linuxserver/heimdall:latest
 | |
|     container_name: heimdall
 | |
|     environment:
 | |
|       - PUID=1000
 | |
|       - PGID=1000
 | |
|       - TZ=Europe/Warsaw
 | |
|     volumes:
 | |
|       - ${PATH_TO_CONFIG}:/config
 | |
|     ports:
 | |
|       - "80:80"
 | |
|       - "443:443"
 | |
|     restart: unless-stopped
 | |
|     healthcheck:
 | |
|       test: ["CMD", "curl", "-f", "http://localhost/"]
 | |
|       interval: 30s
 | |
|       timeout: 10s
 | |
|       retries: 3
 | |
|     networks:
 | |
|       - heimdall-net
 | |
| 
 | |
| networks:
 | |
|   heimdall-net:
 | |
|     driver: bridge
 |