Add media folder support, bump alpine (#1578)

This commit is contained in:
Franck Nijhof
2020-09-16 16:12:24 +02:00
committed by GitHub
parent 76dbf5cfed
commit 824012e668
4 changed files with 13 additions and 8 deletions

View File

@@ -1,5 +1,10 @@
# Changelog
## 5.1.0
- Update base image to Alpine 3.12
- Add access to new media folder
## 5.0.0
- Rewrite add-on to S6 Overlay

View File

@@ -12,7 +12,7 @@ RUN \
&& pip3 install \
--no-cache-dir \
--prefer-binary \
--find-links "https://wheels.home-assistant.io/alpine-3.11/${BUILD_ARCH}/" \
--find-links "https://wheels.home-assistant.io/alpine-3.12/${BUILD_ARCH}/" \
hass-configurator=="${CONFIGURATOR_VERSION}" \
\
&& find /usr/local \

View File

@@ -1,10 +1,10 @@
{
"build_from": {
"aarch64": "homeassistant/aarch64-base:3.11",
"amd64": "homeassistant/amd64-base:3.11",
"armhf": "homeassistant/armhf-base:3.11",
"armv7": "homeassistant/armv7-base:3.11",
"i386": "homeassistant/i386-base:3.11"
"aarch64": "homeassistant/aarch64-base:3.12",
"amd64": "homeassistant/amd64-base:3.12",
"armhf": "homeassistant/armhf-base:3.12",
"armv7": "homeassistant/armv7-base:3.12",
"i386": "homeassistant/i386-base:3.12"
},
"args": {
"CONFIGURATOR_VERSION": "0.4.0"

View File

@@ -1,6 +1,6 @@
{
"name": "File editor",
"version": "5.0.0",
"version": "5.1.0",
"slug": "configurator",
"description": "Simple browser-based file editor for Home Assistant",
"url": "https://github.com/home-assistant/hassio-addons/tree/master/configurator",
@@ -12,7 +12,7 @@
"panel_icon": "mdi:wrench",
"homeassistant_api": true,
"boot": "auto",
"map": ["backup:rw", "config:rw", "share:rw", "ssl:rw"],
"map": ["backup:rw", "config:rw", "media:rw", "share:rw", "ssl:rw"],
"options": {
"dirsfirst": false,
"enforce_basepath": true,