Tasmota Device Manager

Portainer Stack:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
---
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:

1
2
3
4
TAG=latest
RST=unless-stopped
NET=bridge
AutoUpdate=true