wiki/docs/portainer-stacks/mqtt-explorer.md
Sthope 0f8c1ec52f
All checks were successful
continuous-integration/drone/push Build is passing
first commit
2022-04-27 11:24:06 +02:00

25 lines
526 B
Markdown

Portainer Stack:
```yaml
---
version: "3.8"
volumes:
mqttexplorer:
services:
mqtt-explorer:
image: smeagolworms4/mqtt-explorer:latest
container_name: mqtt-explorer
network_mode: bridge
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
- HTTP_PORT=4000
- CONFIG_PATH=/mqtt-explorer/config
volumes:
- mqttexplorer:/mqtt-explorer/config
ports:
- 4000:4000
restart: unless-stopped
labels:
- com.centurylinklabs.watchtower.enable=true
```