mirror of
				https://gitlab.sectorq.eu/home/docker-compose.git
				synced 2025-10-31 02:21:10 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			761 B
		
	
	
	
		
			YAML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			761 B
		
	
	
	
		
			YAML
		
	
	
		
			Executable File
		
	
	
	
	
| services:
 | |
|   heimdall:
 | |
|     container_name: heimdall
 | |
|     environment:
 | |
|     - PUID=1000
 | |
|     - PGID=1000
 | |
|     - TZ=Europe/Bratislava
 | |
|     image: ${DOCKER_REGISTRY:-}lscr.io/linuxserver/heimdall:latest
 | |
|     labels:
 | |
|       com.centurylinklabs.watchtower.enable: true
 | |
|       wud.watch: true
 | |
|       wud.watch.digest: true
 | |
|     ports:
 | |
|     - 8084:80
 | |
|     - 4437:443
 | |
|     restart: ${RESTART:-unless-stopped}
 | |
|     volumes:
 | |
|     - /share/docker_data/heimdall/config:/config
 | |
|   web:
 | |
|     environment:
 | |
|     - NGINX_HOST=sectorq.eu
 | |
|     - NGINX_PORT=80
 | |
|     image: ${DOCKER_REGISTRY:-}nginx:latest
 | |
|     labels:
 | |
|       wud.watch: true
 | |
|       wud.watch.digest: true
 | |
|     ports:
 | |
|     - 48000:80
 | |
|     restart: ${RESTART:-unless-stopped}
 | |
|     volumes:
 | |
|     - /share/docker_data/webhub:/usr/share/nginx/html
 | 
