Simple service to connect to mqtt brokers and monitor the messages coming through. Distributes all topics to all connected clients using websockets.
Using docker directly
docker run -p 3030:3030 -v ./config:/srv/config ghcr.io/klawr/mqtt-inspector:latest
Using compose:
services:
mqtt-inspector:
image: ghcr.io/klawr/mqtt-inspector:latest
container_name: mqtt-inspector
ports:
- 3030:3030
volumes:
- ./config:/srv/config