Skip to content

Instantly share code, notes, and snippets.

@ealvesss
Created November 21, 2023 17:38
Show Gist options
  • Save ealvesss/80707904966e3100b8ed1835111046a9 to your computer and use it in GitHub Desktop.
Save ealvesss/80707904966e3100b8ed1835111046a9 to your computer and use it in GitHub Desktop.
tapo-smart-hub-emulator

Tapo Smart Hub


This integration is part of HACS store

Running docker image

docker run -d \
  --name homeassistant \
  --privileged \
  --restart=unless-stopped \
  -e TZ=MY_TIME_ZONE \
  -v /PATH_TO_YOUR_CONFIG:/config \
  --network=host \
  ghcr.io/home-assistant/home-assistant:stable

Docker Compose

version: '3'
services:
  homeassistant:
    container_name: homeassistant
    image: "ghcr.io/home-assistant/home-assistant:stable"
    volumes:
      - /PATH_TO_YOUR_CONFIG:/config
      - /etc/localtime:/etc/localtime:ro
    restart: unless-stopped
    privileged: true
    network_mode: host

Documentation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment