Fix wrong docker env variable syntax

This commit is contained in:
iamdoubz
2023-11-02 15:16:42 -05:00
parent 11f7898cb0
commit 32fc83ef01
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ I forgot the password to my old HA instance, so I bought a nice, new, and shiny
3. `balena push Raspberry3B01`
## Changelog
### Version 1.9.1
### Version 1.9.2
**2023-11-02**:
- Add additional config variables for HASS
- Fix balena bugs
+1 -1
View File
@@ -1 +1 @@
1.9.1
1.9.2
+1 -1
View File
@@ -27,4 +27,4 @@ data:
applicationEnvironmentVariables:
- VERIFY_HOSTNAME:
- ALLOWED_NETWORKS:
version: 1.9.1
version: 1.9.2
+3 -3
View File
@@ -33,9 +33,9 @@ services:
volumes:
- 'config:/hass-config'
environment:
HC_BASEPATH: '/hass-config'
HC_ALLOWED_NETWORKS: '${ALLOWED_NETWORKS:="192.168.1.0/24"}'
HC_VERIFY_HOSTNAME: '${VERIFY_HOSTNAME:="homeassistant.local"}'
- HC_BASEPATH=/hass-config
- HC_ALLOWED_NETWORKS=${ALLOWED_NETWORKS:-"192.168.1.0/24"}
- HC_VERIFY_HOSTNAME=${VERIFY_HOSTNAME:-"homeassistant.local"}
appdaemon:
container_name: app-daemon
image: acockburn/appdaemon:latest