/mqtt-tree

A MQTT client which provides a tree-like visualization of MQTT topics.

Primary LanguagePythonMIT LicenseMIT

MQTT-Tree

A MQTT client which provides a web-based tree-like visualization of MQTT topics.

Deployment using docker-compose

docker-compose.yaml

version: '3.2'
services:
  mqtt-tree:
    image: rzarajczyk/mqtt-tree:latest
    volumes:
      - ./config/mqtt-tree.yaml:/app/config/config.yaml
    restart: unless-stopped
    network_mode: host

mqtt-tree.yaml

port: 8075
mqtt:
  broker: <<mqtt address>
  port: <<mqtt port>>
  username: <<mqtt username>>
  password: <<mqtt password>>

Availability:

The web interface is available at the specified port:

http://localhost:8075