12 lines
280 B
YAML
12 lines
280 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
homeassistant:
|
|
image: "ghcr.io/home-assistant/home-assistant:stable"
|
|
container_name: homeassistant
|
|
restart: always
|
|
volumes:
|
|
- "./homeassistant-config-data:/config"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
network_mode: host
|