mirror of
https://github.com/CoolnsX/selfhost.git
synced 2025-12-20 23:35:16 +05:30
22 lines
497 B
YAML
22 lines
497 B
YAML
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
|
|
|
|
esphome:
|
|
container_name: esphome
|
|
image: esphome/esphome
|
|
volumes:
|
|
- ./esphome/config:/config
|
|
- /etc/localtime:/etc/localtime:ro
|
|
restart: always
|
|
network_mode: host
|
|
|