mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-06-07 08:05:57 +02:00
update
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
|
- BREAKING CHANGE : now options must be configured from the addon options : OPENPROJECT_SECRET_KEY_BASE ; OPENPROJECT_HOST__NAME ; OPENPROJECT_HTTPS ; OPENPROJECT_DEFAULT__LANGUAGE
|
||||||
|
|
||||||
## 16.0-3 (01-06-2025)
|
## 16.0-3 (01-06-2025)
|
||||||
- Minor bugs fixed
|
- Minor bugs fixed
|
||||||
|
|
||||||
## 16.0 (31-05-2025)
|
## 16.0 (31-05-2025)
|
||||||
- Minor bugs fixed
|
- Minor bugs fixed
|
||||||
|
|
||||||
|
|||||||
@@ -37,7 +37,9 @@ ENV OPENPROJECT_SECRET_KEY_BASE=addon_secret \
|
|||||||
|
|
||||||
USER root
|
USER root
|
||||||
|
|
||||||
RUN sed -i "1a /./ha_entrypoint.sh" /app/docker/prod/entrypoint.sh
|
RUN sed -i "s|/bin/bash|/bin/bashio|g" /app/docker/prod/entrypoint.sh && \
|
||||||
|
sed -i "1a /./ha_entrypoint.sh" /app/docker/prod/entrypoint.sh && \
|
||||||
|
sed -i '2a\for variable in OPENPROJECT_SECRET_KEY_BASE OPENPROJECT_HOST__NAME OPENPROJECT_HTTPS OPENPROJECT_DEFAULT__LANGUAGE; do if bashio::config.has_value $variable; then export $variable="$(bashio::config $variable)"; fi; done' /app/docker/prod/entrypoint.sh
|
||||||
|
|
||||||
##################
|
##################
|
||||||
# 3 Install apps #
|
# 3 Install apps #
|
||||||
|
|||||||
@@ -12,15 +12,26 @@
|
|||||||
"share:rw"
|
"share:rw"
|
||||||
],
|
],
|
||||||
"name": "Openproject",
|
"name": "Openproject",
|
||||||
|
"options": {
|
||||||
|
"OPENPROJECT_HOST__NAME": "homeassistant:8080",
|
||||||
|
"OPENPROJECT_HTTPS": "false",
|
||||||
|
"OPENPROJECT_DEFAULT__LANGUAGE": "en"
|
||||||
|
},
|
||||||
"ports": {
|
"ports": {
|
||||||
"8080/tcp": 8080
|
"8080/tcp": 8080
|
||||||
},
|
},
|
||||||
"ports_description": {
|
"ports_description": {
|
||||||
"8080/tcp": "Web interface"
|
"8080/tcp": "Web interface"
|
||||||
},
|
},
|
||||||
|
"schema": {
|
||||||
|
"OPENPROJECT_SECRET_KEY_BASE": "str",
|
||||||
|
"OPENPROJECT_HOST__NAME": "str",
|
||||||
|
"OPENPROJECT_HTTPS": "bool",
|
||||||
|
"OPENPROJECT_DEFAULT__LANGUAGE": "str"
|
||||||
|
},
|
||||||
"slug": "openproject",
|
"slug": "openproject",
|
||||||
"udev": true,
|
"udev": true,
|
||||||
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/openproject",
|
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/openproject",
|
||||||
"version": "16.0-3",
|
"version": "16.0-4",
|
||||||
"webui": "[PROTO:ssl]://[HOST]:[PORT:8080]"
|
"webui": "[PROTO:ssl]://[HOST]:[PORT:8080]"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user