rzarajczyk / mqtt-tree

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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

License:MIT License


Languages

Language:Python 35.9%Language:HTML 35.1%Language:JavaScript 23.6%Language:CSS 3.4%Language:Dockerfile 2.0%