Added HABridge conainer
This commit is contained in:
3
ha/.gitignore
vendored
3
ha/.gitignore
vendored
@@ -1,5 +1,8 @@
|
|||||||
# Home Assistant configuration
|
# Home Assistant configuration
|
||||||
*.env
|
*.env
|
||||||
|
ha_config/
|
||||||
|
bridge_config/
|
||||||
|
|
||||||
|
|
||||||
# Ignore system generated logs
|
# Ignore system generated logs
|
||||||
*.log
|
*.log
|
||||||
|
|||||||
0
ha/README.md
Normal file
0
ha/README.md
Normal file
@@ -3,7 +3,7 @@ services:
|
|||||||
container_name: homeassistant
|
container_name: homeassistant
|
||||||
image: "ghcr.io/home-assistant/home-assistant:stable"
|
image: "ghcr.io/home-assistant/home-assistant:stable"
|
||||||
volumes:
|
volumes:
|
||||||
- ./config:/config
|
- ./ha_config:/config
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
- /run/dbus:/run/dbus:ro
|
- /run/dbus:/run/dbus:ro
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
@@ -16,6 +16,23 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
TZ: America/Detroit
|
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:
|
networks:
|
||||||
homelab:
|
homelab:
|
||||||
external: true
|
external: true
|
||||||
|
|||||||
Reference in New Issue
Block a user