Skip to main content

Home Assistant - Central smart home service

Summary

Home Assistant is a central smart home service used to connect all your smart home utilities.

Installation via docker-compose

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

Use behind proxy

Add the http configuration to your configuration.yaml.

http:
  base_url: homeassistant.domain.tld
  use_x_forwarded_for: true
  trusted_proxies:
    - 192.1.1.1