Skip to content

Commit

Permalink
Mount addon_config into container (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBoot authored Oct 27, 2024
1 parent 4f264d2 commit a9a141c
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
16 changes: 14 additions & 2 deletions zigbee2mqtt-edge/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,20 @@
"timeout": 30,
"panel_icon": "mdi:zigbee",
"map": [
"share:rw",
"config:rw"
{
"type": "share",
"read_only": false
},
{
"type": "homeassistant_config",
"read_only": false,
"path": "/config"
},
{
"type": "addon_config",
"read_only": false,
"path": "/addon_config"
}
],
"ports": {
"8485/tcp": 8485,
Expand Down
3 changes: 3 additions & 0 deletions zigbee2mqtt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [Unreleased]
- Mount addon specific configuration into the addon container (`/addon_config`)

## 1.40.2-1
- Updated Zigbee2MQTT to version [`1.40.2`](https://github.com/Koenkk/zigbee2mqtt/releases/tag/1.40.2)

Expand Down
16 changes: 14 additions & 2 deletions zigbee2mqtt/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,20 @@
"timeout": 30,
"panel_icon": "mdi:zigbee",
"map": [
"share:rw",
"config:rw"
{
"type": "share",
"read_only": false
},
{
"type": "homeassistant_config",
"read_only": false,
"path": "/config"
},
{
"type": "addon_config",
"read_only": false,
"path": "/addon_config"
}
],
"ports": {
"8485/tcp": 8485,
Expand Down

0 comments on commit a9a141c

Please sign in to comment.