12 lines
304 B
YAML
12 lines
304 B
YAML
version: '3.3'
|
|
services:
|
|
home-assistant:
|
|
restart: unless-stopped
|
|
container_name: homeassistant
|
|
volumes:
|
|
- './config:/config'
|
|
environment:
|
|
- TZ=Asia/Taipei
|
|
network_mode: host
|
|
image: 'ghcr.io/home-assistant/home-assistant:stable'
|