39 lines
788 B
YAML
39 lines
788 B
YAML
services:
|
|
homeassistant:
|
|
container_name: homeassistant
|
|
image: "ghcr.io/home-assistant/home-assistant:stable"
|
|
volumes:
|
|
- ./ha_config:/config
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /run/dbus:/run/dbus:ro
|
|
restart: unless-stopped
|
|
privileged: false
|
|
ports:
|
|
- '8123:8123'
|
|
networks:
|
|
- 'default'
|
|
- 'homelab'
|
|
environment:
|
|
TZ: America/Detroit
|
|
|
|
habridge:
|
|
image: lscr.io/linuxserver/habridge:latest
|
|
container_name: habridge
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=America/Detroit
|
|
volumes:
|
|
- ./bridge_config:/config
|
|
ports:
|
|
- 8282:8080
|
|
- 50000:50000
|
|
networks:
|
|
- 'default'
|
|
- 'homelab'
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
homelab:
|
|
external: true
|