Initial upload of configurations

This commit is contained in:
Sil Klaasboer
2025-02-17 19:23:54 +01:00
parent 75ea10380d
commit ca2bcafe16
184 changed files with 4660 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
services:
homeassistant:
container_name: ${CONTAINER_NAME}
image: "ghcr.io/home-assistant/home-assistant:stable"
volumes:
- ${HOME_DIR}/${CONTAINER_NAME}/config:/config
- ${LOCALTIME}:${LOCALTIME}:ro
- /run/dbus:/run/dbus:ro
restart: unless-stopped
env_file:
- path: ./homeassistant.env
required: true
- path: ../global.env
required: true
privileged: true
network_mode: "host"
devices:
- ${P1_PORT_DEV}:/dev/ttyACM0
- ${ZIGBEE_DONGLE_PORT_DEV}:/dev/ttyUSB0
environment:
DISABLE_JEMALLOC: true

View File

@@ -0,0 +1,3 @@
CONTAINER_NAME=homeassistant
P1_PORT_DEV=/dev/ttyACM0
ZIGBEE_DONGLE_PORT_DEV=/dev/ttyUSB0