Mosquitto repository to test MQTT protocol
				
			 
			
		 
		
		
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
	
	
		
		
			
	
    
		
			
				
					
						|                    |  | version: '2'
services:
  mqtt: 
    container_name: mosquitto
    image: eclipse-mosquitto:2.0.11
    restart: always
    ports: 
      - "1883:1883"
      - "9001:9001"
    volumes:
      - ./config:/mosquitto/config
      - ./data:/mosquitto/data
      - ./log:/mosquitto/log
volumes:
  config:
  data:
  log:
 |