13 lines
337 B
YAML
13 lines
337 B
YAML
version: '3.3'
|
|
services:
|
|
home-assistant:
|
|
container_name: homeassistant
|
|
privileged: false
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=America/New_York
|
|
volumes:
|
|
- '/kubernetes-volumes/homeassistant2:/config'
|
|
network_mode: host
|
|
image: 'ghcr.io/home-assistant/home-assistant:stable'
|