Mqtt explorer

Portainer Stack:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
version: "3.9"
volumes:
  mqttexplorer:
services:
  mqtt-explorer:
    image: smeagolworms4/mqtt-explorer:${TAG-latest}
    container_name: mqtt-explorer
    network_mode: ${NET-bridge}
    environment:
      - PUID=${PUID-1000}
      - PGID=${PGID-1000}
      - TZ=${TZ-Europe/Amsterdam}
      - HTTP_PORT=4000
      - CONFIG_PATH=/mqtt-explorer/config
    volumes:
      - mqttexplorer:/mqtt-explorer/config
    ports:
      - 4000:4000
    restart: ${RST-unless-stopped}
    labels:
      - com.centurylinklabs.watchtower.enable=${AutoUpdate-true}

Environments:

1
2
3
4
5
6
7
TAG=latest
RST=unless-stopped
NET=bridge
PUID=${PUID-1000}
PGID=${PGID-1000}
TZ=${TZ-Europe/Amsterdam}
AutoUpdate=true