Revision [6141]
This is an old revision of TDMDocker made by ZorrUno on 2020-08-20 04:54:51.
Tasmota Device Manager and Docker
dockerfile
FROM jgoerzen/debian-base-minimal # Install Tasmota Device Manager RUN apt-get update && apt-get install python3 python3-pip -y --no-install-recommends RUN pip3 install --upgrade pip RUN pip3 install setuptools RUN pip3 install tdmgr # Environment Variables ENV TZ="Pacific/Auckland" # Copy the start script. COPY startapp.sh /startapp.sh # Expose ports EXPOSE 5810 5910 # Create volume VOLUME /config
Docker Compose
version: '3.3' services: tasmota-device-manager: build: . volumes: - /dockervolumes/tasmota-device-manager/config:/config ports: - '5810:5810' container_name: tasmota-device-manager restart: unless-stopped