mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-23 22:04:24 +01:00
Add media folder support, bump alpine (#1578)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 \
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user