# # values to be used for substitution by docker compose in compose.yml AND .*.env files # APPLICATION_NAME=home-assistant DOCKERDIR=/mnt/SSD1/docker/ MEDIADIR=/mnt/stpool1/NData1/Media DOWNLOADSDIR=/mnt/stpool1/Downloads STACKSDIR=${DOCKERDIR}/stacks/${APPLICATION_NAME} DATAROOT=${DOCKERDIR}/data DATADIR=${DATAROOT}/${APPLICATION_NAME} SECRETSDIR=${STACKSDIR}/secrets DOMAINNAME=sthome.org WEBUI_PORT=8123 # # Generate DB_PASSWORD with: # openssl rand 36 | base64 -w 0 > /mnt/SSD1/docker/stacks/home-assistant/secrets/home-assistant_postgresql_password POSTGRES_DB_PORT=5432 POSTGRES_DB_HOST=home-assistant_postgresql POSTGRES_DB_NAME=/run/secrets/home-assistant_postgresql_database POSTGRES_DB_USER=/run/secrets/home-assistant_postgresql_username POSTGRES_DB_PASSWORD=/run/secrets/home-assistant_postgresql_password