Fix wrong docker env variable syntax
This commit is contained in:
@@ -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
@@ -27,4 +27,4 @@ data:
|
||||
applicationEnvironmentVariables:
|
||||
- VERIFY_HOSTNAME:
|
||||
- ALLOWED_NETWORKS:
|
||||
version: 1.9.1
|
||||
version: 1.9.2
|
||||
|
||||
+3
-3
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user