Freerk Venhuizen
Results
2
comments of
Freerk Venhuizen
Content of the docker-compose yaml file: version: "3.5" services: mosquitto: container_name: mosquitto image: eclipse-mosquitto:latest user: "0" ports: - "1883:1883" - "9001:9001" volumes: - ./mqtt/data:/mosquitto/data - ./mqtt/log:/mosquitto/log - ./mqtt/config:/mosquitto/config restart: always...
Awesome, that sounds exactly what I'm looking for! Thanks!