From 824012e66891ba324328453564bae25af7f7128a Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 16 Sep 2020 16:12:24 +0200 Subject: [PATCH] Add media folder support, bump alpine (#1578) --- configurator/CHANGELOG.md | 5 +++++ configurator/Dockerfile | 2 +- configurator/build.json | 10 +++++----- configurator/config.json | 4 ++-- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/configurator/CHANGELOG.md b/configurator/CHANGELOG.md index 9b15782..321906b 100644 --- a/configurator/CHANGELOG.md +++ b/configurator/CHANGELOG.md @@ -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 diff --git a/configurator/Dockerfile b/configurator/Dockerfile index 6e0d34f..5baf09b 100644 --- a/configurator/Dockerfile +++ b/configurator/Dockerfile @@ -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 \ diff --git a/configurator/build.json b/configurator/build.json index 9c0fa36..3fdb203 100644 --- a/configurator/build.json +++ b/configurator/build.json @@ -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" diff --git a/configurator/config.json b/configurator/config.json index a5054d2..6cbeb39 100644 --- a/configurator/config.json +++ b/configurator/config.json @@ -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,