mirror of
				https://gitlab.sectorq.eu/home/docker-compose.git
				synced 2025-10-31 02:21:10 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			903 B
		
	
	
	
		
			YAML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			903 B
		
	
	
	
		
			YAML
		
	
	
		
			Executable File
		
	
	
	
	
| networks:
 | |
|   net: null
 | |
| services:
 | |
|   gotify:
 | |
|     container_name: gotify
 | |
|     env_file:
 | |
|     - stack.env
 | |
|     hostname: gotify
 | |
|     image: ${DOCKER_REGISTRY:-}gotify/server
 | |
|     labels:
 | |
|       wud.watch: true
 | |
|       wud.watch.digest: true
 | |
|     networks:
 | |
|     - net
 | |
|     ports:
 | |
|     - 8010:80
 | |
|     restart: unless-stopped
 | |
|     security_opt:
 | |
|     - no-new-privileges:true
 | |
|     volumes:
 | |
|     - /share/docker_data/gotify/data:/app/data
 | |
|   igotify:
 | |
|     container_name: igotify
 | |
|     env_file:
 | |
|     - stack.env
 | |
|     hostname: igotify
 | |
|     image: ${DOCKER_REGISTRY:-}ghcr.io/androidseb25/igotify-notification-assist:latest
 | |
|     labels:
 | |
|       wud.watch: true
 | |
|       wud.watch.digest: true
 | |
|     networks:
 | |
|     - net
 | |
|     ports:
 | |
|     - 8681:8080
 | |
|     pull_policy: always
 | |
|     restart: unless-stopped
 | |
|     security_opt:
 | |
|     - no-new-privileges:true
 | |
|     volumes:
 | |
|     - /share/docker_data/igotify/data:/app/data
 | |
| volumes:
 | |
|   api-data: null
 | |
|   data: null
 | 
