wiki/docs/portainer-stacks/Tasmota-Device-Manager.md
sthope 848a5f5f29
All checks were successful
continuous-integration/drone/push Build is passing
updating docker version
2023-08-19 21:52:32 +02:00

28 lines
582 B
Markdown

Portainer Stack:
```yaml
---
version: "3.9"
services:
tasmota-device-manager:
image: ghcr.io/sirgoodenough/tdmdock:${TAG-latest}
container_name: tasmota-device-manager
network_mode: ${NET-bridge}
volumes:
- /tasmota_backups/tdm:/config
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
ports:
- 5810:5800
- 5910:5900
restart: ${RST-unless-stopped}
labels:
- com.centurylinklabs.watchtower.enable=${AutoUpdate-true}
```
Environments:
```
TAG=latest
RST=unless-stopped
NET=bridge
AutoUpdate=true
```