Home My Home Assistant Setup
Post
Cancel

My Home Assistant Setup

Home Assistant Setup

When I first started experimenting with Home Assistant I started with a simple docker run and thankfully learned about docker-compose not too long after. Currently my compose file is pretty straight forward. I pass though the HUSBZB-1 which requires two passthroughs: one for Z-Wave and one for ZigBee.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
version: '3.1'
services:
  homeassistant:
    container_name: 'home-assistant'
    image: homeassistant/home-assistant:stable
    network_mode: host
    volumes:
      - /docker/homeassistant:/config
    devices:
    #Passthrough USB Stick for Z-Wave & Zigbee
      - /dev/ttyUSB1:/dev/ttyUSB1
      - /dev/ttyUSB0:/dev/ttyUSB0
    env_file: /docker/docker_envs.env
    restart: unless-stopped

Components

Hardware

Sensors & Integrations

Automations

Automations moved to directory and split out based on functionality:

This post is licensed under CC BY 4.0 by the author.