mirror of
				https://gitlab.sectorq.eu/home/docker-compose.git
				synced 2025-10-30 18:11:10 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			465 B
		
	
	
	
		
			YAML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			465 B
		
	
	
	
		
			YAML
		
	
	
		
			Executable File
		
	
	
	
	
| name: mosquitto
 | |
| services:
 | |
|   mosquitto:
 | |
|     image: ${DOCKER_REGISTRY:-}eclipse-mosquitto
 | |
|     labels:
 | |
|       com.centurylinklabs.watchtower.enable: 'true'
 | |
|       wud.watch: true
 | |
|       wud.watch.digest: true
 | |
|     mem_limit: 1g
 | |
|     network_mode: host
 | |
|     restart: ${RESTART:-unless-stopped}
 | |
|     volumes:
 | |
|     - /share/docker_data/mosquitto/conf:/mosquitto/config
 | |
|     - /share/docker_data/mosquitto/data:/mosquitto/data
 | |
|     - /share/docker_data/mosquitto/log:/mosquitto/log
 | 
