17 lines
369 B
YAML
17 lines
369 B
YAML
version: "3.8"
|
|
|
|
name: homeassistant
|
|
|
|
services:
|
|
homeassistant:
|
|
container_name: homeassistant
|
|
image: "ghcr.io/home-assistant/home-assistant:stable"
|
|
volumes:
|
|
- ./config:/config
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /run/dbus:/run/dbus:ro
|
|
restart: unless-stopped
|
|
privileged: true
|
|
network_mode: host
|
|
ports:
|
|
- 8123 : 8123 |