Embed env_vars guidance in docs

This commit is contained in:
Alexandre
2025-11-06 16:50:01 +01:00
parent e4a59af7a6
commit a928c8e9e2
293 changed files with 601 additions and 153 deletions

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
- Implemented healthcheck - Implemented healthcheck
- WARNING : update to supervisor 2022.11 before installing - WARNING : update to supervisor 2022.11 before installing
- Add codenotary sign - Add codenotary sign

View File

@@ -42,6 +42,8 @@ The installation of this add-on is pretty straightforward and not different in c
## Configuration ## Configuration
Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
Webui can be found at <http://homeassistant:PORT>. Webui can be found at <http://homeassistant:PORT>.
```yaml ```yaml
@@ -74,3 +76,5 @@ Create an issue on github
## Illustration ## Illustration
No illustration No illustration

View File

@@ -82,7 +82,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
INTERFACE_NAME: str? INTERFACE_NAME: str?
ROUTER_IP: str ROUTER_IP: str

View File

@@ -1,3 +1,4 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 1.68.0 (11-10-2025) ## 1.68.0 (11-10-2025)
- Update to latest version from autobrr/autobrr (changelog : https://github.com/autobrr/autobrr/releases) - Update to latest version from autobrr/autobrr (changelog : https://github.com/autobrr/autobrr/releases)

View File

@@ -95,10 +95,12 @@ This addon supports mounting both local drives and remote SMB shares:
This addon supports custom script execution and environment variable injection: This addon supports custom script execution and environment variable injection:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Support ## Support
Create an issue on github Create an issue on github
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -97,7 +97,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
PGID: int PGID: int
PUID: int PUID: int

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 2025.06.06 (03-06-2025) ## 2025.06.06 (03-06-2025)
- Minor bugs fixed - Minor bugs fixed
## 2025.06.05 (03-06-2025) ## 2025.06.05 (03-06-2025)

View File

@@ -84,7 +84,7 @@ This addon supports mounting both local drives and remote SMB shares:
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Installation ## Installation
@@ -170,3 +170,5 @@ Create an issue on github
--- ---

View File

@@ -91,7 +91,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
BIRDSONGS_FOLDER: str? BIRDSONGS_FOLDER: str?
LIVESTREAM_BOOT_ENABLED: bool LIVESTREAM_BOOT_ENABLED: bool

View File

@@ -1,3 +1,4 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 1.5.3 (27-09-2025) ## 1.5.3 (27-09-2025)
- Update to latest version from linuxserver/docker-bazarr (changelog : https://github.com/linuxserver/docker-bazarr/releases) - Update to latest version from linuxserver/docker-bazarr (changelog : https://github.com/linuxserver/docker-bazarr/releases)

View File

@@ -29,6 +29,8 @@ This addon is based on the docker image https://github.com/linuxserver/docker-ba
## Configuration ## Configuration
Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
Webui can be found at <http://homeassistant:PORT> or through the sidebar using Ingress. Webui can be found at <http://homeassistant:PORT> or through the sidebar using Ingress.
Configurations can be done through the app webUI, except for the following options. Configurations can be done through the app webUI, except for the following options.
@@ -89,3 +91,5 @@ Create an issue on github
--- ---
![illustration](https://www.bazarr.media/assets/img/upgrade.png) ![illustration](https://www.bazarr.media/assets/img/upgrade.png)

View File

@@ -94,7 +94,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
PGID: int PGID: int
PUID: int PUID: int

View File

@@ -1,3 +1,4 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 0.0.101 (13-06-2025) ## 0.0.101 (13-06-2025)
- Update to latest version from chrisleekr/binance-trading-bot (changelog : https://github.com/chrisleekr/binance-trading-bot/releases) - Update to latest version from chrisleekr/binance-trading-bot (changelog : https://github.com/chrisleekr/binance-trading-bot/releases)

View File

@@ -29,6 +29,8 @@ This is a test app ; for any issues please contact the link above.
## Configuration ## Configuration
Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
Webui can be found at <http://homeassistant:80>. Webui can be found at <http://homeassistant:80>.
Please see https://github.com/chrisleekr/binance-trading-bot for configuration. Please see https://github.com/chrisleekr/binance-trading-bot for configuration.
@@ -48,3 +50,5 @@ comparison to installing any other Hass.io add-on.
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg [armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg

View File

@@ -98,7 +98,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
BINANCE_AUTHENTICATION_ENABLED: bool BINANCE_AUTHENTICATION_ENABLED: bool
BINANCE_AUTHENTICATION_PASSWORD: str BINANCE_AUTHENTICATION_PASSWORD: str

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "nightly-20251028" (01-11-2025) ## "nightly-20251028" (01-11-2025)
- Minor bugs fixed - Minor bugs fixed

View File

@@ -62,7 +62,7 @@ This addon supports mounting both local drives and remote SMB shares:
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Installation ## Installation
@@ -151,3 +151,5 @@ Create an issue on github
![illustration](https://raw.githubusercontent.com/tphakala/birdnet-go/main/doc/BirdNET-Go-dashboard.webp) ![illustration](https://raw.githubusercontent.com/tphakala/birdnet-go/main/doc/BirdNET-Go-dashboard.webp)

View File

@@ -101,7 +101,7 @@ privileged:
- SYS_RESOURCE - SYS_RESOURCE
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
BIRDSONGS_FOLDER: str? BIRDSONGS_FOLDER: str?
TZ: str? TZ: str?

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 2025.11.04 (05-11-2025) ## 2025.11.04 (05-11-2025)
- Minor bugs fixed - Minor bugs fixed
## 2025.11.03 (04-11-2025) ## 2025.11.03 (04-11-2025)

View File

@@ -89,7 +89,7 @@ This addon supports mounting both local drives and remote SMB shares:
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Installation ## Installation
@@ -176,3 +176,5 @@ Create an issue on github
--- ---
![illustration](https://raw.githubusercontent.com/tphakala/birdnet-pi/main/doc/birdnet-pi-dashboard.webp) ![illustration](https://raw.githubusercontent.com/tphakala/birdnet-pi/main/doc/birdnet-pi-dashboard.webp)

View File

@@ -90,7 +90,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
BIRDSONGS_FOLDER: str? BIRDSONGS_FOLDER: str?
LIVESTREAM_BOOT_ENABLED: bool LIVESTREAM_BOOT_ENABLED: bool

View File

@@ -1,3 +1,4 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 2201.1.0 (26-08-2023) ## 2201.1.0 (26-08-2023)

View File

@@ -92,7 +92,7 @@ This addon supports mounting both local drives and remote SMB shares:
This addon supports custom script execution and environment variable injection: This addon supports custom script execution and environment variable injection:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Support ## Support
@@ -105,3 +105,5 @@ Create an issue on github
![illustration](https://booksonic-air.com/img/slider/artistdetails.png) ![illustration](https://booksonic-air.com/img/slider/artistdetails.png)
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -87,7 +87,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
PGID: int PGID: int
PUID: int PUID: int

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "2.38.2" (01-11-2025) ## "2.38.2" (01-11-2025)
- Minor bugs fixed - Minor bugs fixed

View File

@@ -46,7 +46,7 @@ TIMEOUT: 60000
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Installation ## Installation
@@ -66,3 +66,5 @@ The installation of this add-on is pretty straightforward and not different in c
## Support ## Support
Create an issue on github Create an issue on github

View File

@@ -81,7 +81,7 @@ ports_description:
3000/tcp: Webui 3000/tcp: Webui
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
TIMEOUT: int TIMEOUT: int
slug: browserless_chrome slug: browserless_chrome

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "8.13.0" (18-10-2025) ## "8.13.0" (18-10-2025)
- Minor bugs fixed - Minor bugs fixed

View File

@@ -95,7 +95,7 @@ This addon supports mounting both local drives and remote SMB shares:
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Support ## Support
@@ -108,3 +108,5 @@ Create an issue on github
![illustration](https://calibre.com/img/slider/artistdetails.png) ![illustration](https://calibre.com/img/slider/artistdetails.png)
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -102,7 +102,7 @@ privileged:
- NET_ADMIN - NET_ADMIN
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
CLI_ARGS: str? CLI_ARGS: str?
PASSWORD: str? PASSWORD: str?

View File

@@ -1,3 +1,4 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 0.6.25 (30-08-2025) ## 0.6.25 (30-08-2025)
- Update to latest version from linuxserver/docker-calibre-web (changelog : https://github.com/linuxserver/docker-calibre-web/releases) - Update to latest version from linuxserver/docker-calibre-web (changelog : https://github.com/linuxserver/docker-calibre-web/releases)

View File

@@ -95,7 +95,7 @@ This addon supports mounting both local drives and remote SMB shares:
This addon supports custom scripts and environment variables: This addon supports custom scripts and environment variables:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Support ## Support
@@ -108,3 +108,5 @@ Create an issue on github
![illustration](https://calibre-web.com/img/slider/artistdetails.png) ![illustration](https://calibre-web.com/img/slider/artistdetails.png)
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -101,7 +101,7 @@ privileged:
- NET_ADMIN - NET_ADMIN
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
DOCKER_MODS: str? DOCKER_MODS: str?
OAUTHLIB_RELAX_TOKEN_SCOPE: str? OAUTHLIB_RELAX_TOKEN_SCOPE: str?

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "0.50.38" (01-11-2025) ## "0.50.38" (01-11-2025)
- Minor bugs fixed - Minor bugs fixed

View File

@@ -28,6 +28,8 @@ This addon is based on the [docker image](https://github.com/linuxserver/docker-
## Configuration ## Configuration
Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
### Main app ### Main app
Web UI can be found at `<your-ip>:5000`, also accessible from the add-on page. Web UI can be found at `<your-ip>:5000`, also accessible from the add-on page.
@@ -94,3 +96,5 @@ comparison to installing any other Hass.io add-on.
1. Carefully configure the add-on to your preferences, see the official documentation for for that. 1. Carefully configure the add-on to your preferences, see the official documentation for for that.
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -22,7 +22,7 @@ ports_description:
5000/tcp: Webui 5000/tcp: Webui
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
BASE_URL: str? BASE_URL: str?
PGID: int PGID: int

View File

@@ -1,3 +1,4 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 19.0.13 (27-09-2025) ## 19.0.13 (27-09-2025)
- Update to latest version from coderaiser/cloudcmd (changelog : https://github.com/coderaiser/cloudcmd/releases) - Update to latest version from coderaiser/cloudcmd (changelog : https://github.com/coderaiser/cloudcmd/releases)

View File

@@ -68,7 +68,7 @@ This addon supports mounting both local drives and remote SMB shares:
This addon supports custom scripts and environment variables: This addon supports custom scripts and environment variables:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Installation ## Installation
@@ -82,3 +82,5 @@ comparison to installing any other Hass.io add-on.
1. Check the logs of the add-on to see if everything went well. 1. Check the logs of the add-on to see if everything went well.
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -90,7 +90,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
CUSTOM_OPTIONS: str? CUSTOM_OPTIONS: str?
DROPBOX_TOKEN: str? DROPBOX_TOKEN: str?

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "1.8.16" (25-10-2025) ## "1.8.16" (25-10-2025)
- Minor bugs fixed - Minor bugs fixed

View File

@@ -87,7 +87,7 @@ cifsdomain: "WORKGROUP"
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
### Mounting Drives ### Mounting Drives
@@ -105,3 +105,5 @@ This addon supports mounting both local drives and remote SMB shares:
Create an issue on github Create an issue on github
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -86,7 +86,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
CODEX_RESET_ADMIN: int? CODEX_RESET_ADMIN: int?
CODEX_SKIP_INTEGRITY_CHECK: int? CODEX_SKIP_INTEGRITY_CHECK: int?

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "25.4.7" (01-11-2025) ## "25.4.7" (01-11-2025)
- Minor bugs fixed - Minor bugs fixed

View File

@@ -81,9 +81,11 @@ password: changeme
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Support ## Support
Create an issue on GitHub Create an issue on GitHub

View File

@@ -30,7 +30,7 @@ ports_description:
9980/tcp: Web interface 9980/tcp: Web interface
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
TZ: str? TZ: str?
aliasgroup1: str aliasgroup1: str

View File

@@ -1,3 +1,4 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 1.3 (11-03-2024) ## 1.3 (11-03-2024)

View File

@@ -84,10 +84,11 @@ This addon supports mounting both local drives and remote SMB shares:
This addon supports custom script execution and environment variable injection: This addon supports custom script execution and environment variable injection:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Support ## Support
Create an issue on github Create an issue on github
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -75,7 +75,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
TZ: str? TZ: str?
cifsdomain: str? cifsdomain: str?

View File

@@ -1,3 +1,4 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 4.9.1.80 (04-10-2025) ## 4.9.1.80 (04-10-2025)
- Update to latest version from linuxserver/docker-emby (changelog : https://github.com/linuxserver/docker-emby/releases) - Update to latest version from linuxserver/docker-emby (changelog : https://github.com/linuxserver/docker-emby/releases)

View File

@@ -29,6 +29,8 @@ Inital addon version : https://github.com/petersendev/hassio-addons
## Configuration ## Configuration
Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
Webui can be found at `<your-ip>:8096`, or within Home Assistant through Ingress. Webui can be found at `<your-ip>:8096`, or within Home Assistant through Ingress.
### Options ### Options
@@ -80,3 +82,5 @@ comparison to installing any other Hass.io add-on.
1. Carefully configure the add-on to your preferences, see the official documentation for for that. 1. Carefully configure the add-on to your preferences, see the official documentation for for that.
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -107,7 +107,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
PGID: int PGID: int
PUID: int PUID: int

View File

@@ -1,3 +1,4 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 4.9.2.6 (01-11-2025) ## 4.9.2.6 (01-11-2025)
- Update to latest version from linuxserver/docker-emby (changelog : https://github.com/linuxserver/docker-emby/releases) - Update to latest version from linuxserver/docker-emby (changelog : https://github.com/linuxserver/docker-emby/releases)

View File

@@ -29,6 +29,8 @@ Inital addon version : https://github.com/petersendev/hassio-addons
## Configuration ## Configuration
Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
Webui can be found at `<your-ip>:8096`, or within Home Assistant through Ingress. Webui can be found at `<your-ip>:8096`, or within Home Assistant through Ingress.
```yaml ```yaml
@@ -56,3 +58,5 @@ comparison to installing any other Hass.io add-on.
1. Carefully configure the add-on to your preferences, see the official documentation for for that. 1. Carefully configure the add-on to your preferences, see the official documentation for for that.
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -108,7 +108,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
PGID: int PGID: int
PUID: int PUID: int

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 0.13.2 (30-05-2024) ## 0.13.2 (30-05-2024)
- Update to latest version from m4dm4rtig4n/myelectricaldata (changelog : <https://github.com/m4dm4rtig4n/myelectricaldata/releases>) - Update to latest version from m4dm4rtig4n/myelectricaldata (changelog : <https://github.com/m4dm4rtig4n/myelectricaldata/releases>)

View File

@@ -26,6 +26,8 @@ MyElectricalData allows an automated access to your Enedis data. See its github
## Configuration ## Configuration
Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
Webui can be found at <http://homeassistant:5000> or through Ingress. Webui can be found at <http://homeassistant:5000> or through Ingress.
Initial setup requires starting the addon once to initialize configuration templates. Initial setup requires starting the addon once to initialize configuration templates.
@@ -77,3 +79,5 @@ comparison to installing any other Hass.io add-on.
1. Carefully configure the add-on to your preferences, see the official documentation for for that. 1. Carefully configure the add-on to your preferences, see the official documentation for for that.
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -85,7 +85,7 @@ ports_description:
5000/tcp: Portail 5000/tcp: Portail
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
CONFIG_LOCATION: str CONFIG_LOCATION: str
TZ: str? TZ: str?

View File

@@ -1,3 +1,4 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 1.0.0rc14 (03-08-2024) ## 1.0.0rc14 (03-08-2024)
- Update to latest version from m4dm4rtig4n/myelectricaldata (changelog : https://github.com/m4dm4rtig4n/myelectricaldata/releases) - Update to latest version from m4dm4rtig4n/myelectricaldata (changelog : https://github.com/m4dm4rtig4n/myelectricaldata/releases)

View File

@@ -26,6 +26,8 @@ MyElectricalData allows an automated access to your Enedis data. See its github
## Configuration ## Configuration
Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
Webui can be found at <http://homeassistant:5000> or through Ingress. Webui can be found at <http://homeassistant:5000> or through Ingress.
Initial setup requires starting the addon once to initialize configuration templates. Initial setup requires starting the addon once to initialize configuration templates.
@@ -77,3 +79,5 @@ comparison to installing any other Hass.io add-on.
1. Carefully configure the add-on to your preferences, see the official documentation for for that. 1. Carefully configure the add-on to your preferences, see the official documentation for for that.
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -85,7 +85,7 @@ ports_description:
5000/tcp: Portail 5000/tcp: Portail
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
CONFIG_LOCATION: str CONFIG_LOCATION: str
TZ: str? TZ: str?

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "4.4.6-3" (05-11-2025) ## "4.4.6-3" (05-11-2025)
- Minor bugs fixed - Minor bugs fixed
## "4.4.6-2" (04-11-2025) ## "4.4.6-2" (04-11-2025)

View File

@@ -83,7 +83,7 @@ TZ: "America/New_York"
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
### Mounting Drives ### Mounting Drives
@@ -156,4 +156,5 @@ For data safety, regularly backup:
Create an issue on github Create an issue on github
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -98,7 +98,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
DB_DATABASE_NAME: str? DB_DATABASE_NAME: str?
DB_HOSTNAME: str? DB_HOSTNAME: str?

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "2.44.2" (25-10-2025) ## "2.44.2" (25-10-2025)
- Minor bugs fixed - Minor bugs fixed

View File

@@ -103,7 +103,7 @@ This addon supports mounting both local drives and remote SMB shares:
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Support ## Support
@@ -113,3 +113,5 @@ Create an issue on GitHub, or ask on the [Home Assistant Community thread](https
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg [armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg

View File

@@ -109,7 +109,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
NoAuth: bool NoAuth: bool
base_folder: str? base_folder: str?

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "6.4.3" (01-11-2025) ## "6.4.3" (01-11-2025)
- Minor bugs fixed - Minor bugs fixed

View File

@@ -28,6 +28,8 @@ This addon is based on the docker image https://hub.docker.com/r/fireflyiii/core
## Configuration ## Configuration
Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
Webui can be found at <http://homeassistant:PORT> or through the sidebar using Ingress. Webui can be found at <http://homeassistant:PORT> or through the sidebar using Ingress.
Configurations can be done through the app webUI, except for the following options. Configurations can be done through the app webUI, except for the following options.
@@ -91,3 +93,5 @@ Create an issue on github
![illustration](https://raw.githubusercontent.com/firefly-iii/firefly-iii/develop/.github/assets/img/imac-complete.png) ![illustration](https://raw.githubusercontent.com/firefly-iii/firefly-iii/develop/.github/assets/img/imac-complete.png)
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -87,7 +87,7 @@ ports_description:
8443/tcp: ssl web interface 8443/tcp: ssl web interface
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
APP_KEY: str APP_KEY: str
CONFIG_LOCATION: str CONFIG_LOCATION: str

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "1.9.0" (25-10-2025) ## "1.9.0" (25-10-2025)
- Minor bugs fixed - Minor bugs fixed

View File

@@ -91,7 +91,7 @@ silent: false
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Installation ## Installation
@@ -113,3 +113,5 @@ Create an issue on github
## Illustration ## Illustration
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -84,7 +84,7 @@ ports_description:
8080/tcp: web interface 8080/tcp: web interface
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
AUTO_IMPORT_SECRET: str? AUTO_IMPORT_SECRET: str?
CAN_POST_AUTOIMPORT: bool? CAN_POST_AUTOIMPORT: bool?

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 1.3.0-6 (18-10-2025) ## 1.3.0-6 (18-10-2025)
- Minor bugs fixed - Minor bugs fixed
## 1.3.0-5 (06-10-2025) ## 1.3.0-5 (06-10-2025)

View File

@@ -28,6 +28,8 @@ This addon is based on the docker image https://hub.docker.com/r/benkl/firefly-i
## Configuration ## Configuration
Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
Webui can be found at <http://homeassistant:3476>. Webui can be found at <http://homeassistant:3476>.
This tool allows you to import transactions from your FinTS enabled bank (primarily German banks) into Firefly III. This tool allows you to import transactions from your FinTS enabled bank (primarily German banks) into Firefly III.
@@ -99,3 +101,5 @@ Create an issue on github
## Illustration ## Illustration
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -81,7 +81,7 @@ ports_description:
8080/tcp: web interface 8080/tcp: web interface
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
Updates: list(|hourly|daily2|daily4|daily6|daily8|daily10|daily12|weekly)? Updates: list(|hourly|daily2|daily4|daily6|daily8|daily10|daily12|weekly)?
silent: bool? silent: bool?

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "3.18.20" (01-11-2025) ## "3.18.20" (01-11-2025)
- Minor bugs fixed - Minor bugs fixed

View File

@@ -46,6 +46,8 @@ The installation of this add-on is pretty straightforward and not different in c
## Configuration ## Configuration
Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
Webui can be found at <http://homeassistant:5050>. Webui can be found at <http://homeassistant:5050>.
Default password: `homeassistant123` (change via addon options). Default password: `homeassistant123` (change via addon options).
@@ -98,3 +100,5 @@ For complete configuration documentation, see: https://flexget.com/Configuration
## Support ## Support
If you have an issue with your installation, please be sure to checkout github. If you have an issue with your installation, please be sure to checkout github.

View File

@@ -86,7 +86,7 @@ ports_description:
5050/tcp: Web interface 5050/tcp: Web interface
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
FG_LOG_LEVEL: list(critical|error|warning|info|verbose|debug|trace)? FG_LOG_LEVEL: list(critical|error|warning|info|verbose|debug|trace)?
FG_PLUGINS: str? FG_PLUGINS: str?

View File

@@ -1,3 +1,4 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 1.8 (17-05-2025) ## 1.8 (17-05-2025)
- Update to latest version from vogler/free-games-claimer (changelog : https://github.com/vogler/free-games-claimer/releases) - Update to latest version from vogler/free-games-claimer (changelog : https://github.com/vogler/free-games-claimer/releases)

View File

@@ -97,7 +97,7 @@ For complete configuration options and advanced settings, see: https://github.co
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Installation ## Installation
@@ -117,3 +117,5 @@ The installation of this add-on is pretty straightforward and not different in c
Create an issue on github Create an issue on github
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -87,7 +87,7 @@ ports_description:
6080/tcp: NOVNC port 6080/tcp: NOVNC port
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
CMD_ARGUMENTS: str CMD_ARGUMENTS: str
CONFIG_LOCATION: str CONFIG_LOCATION: str

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
- WARNING : update to supervisor 2022.11 before installing - WARNING : update to supervisor 2022.11 before installing
## 0.8.2 (17-07-2022) ## 0.8.2 (17-07-2022)

View File

@@ -27,6 +27,8 @@ See its github for all informations : https://github.com/yukulehe/gazpar2mqtt
## Configuration ## Configuration
Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
This addon fetches gas consumption data from GRDF (French gas utility) and publishes it to MQTT for Home Assistant integration. This addon fetches gas consumption data from GRDF (French gas utility) and publishes it to MQTT for Home Assistant integration.
### Setup Steps ### Setup Steps
@@ -97,3 +99,5 @@ comparison to installing any other Hass.io add-on.
1. Carefully configure the add-on to your preferences, see the official documentation for for that. 1. Carefully configure the add-on to your preferences, see the official documentation for for that.
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -79,7 +79,7 @@ options:
verbose: true verbose: true
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
CONFIG_LOCATION: str CONFIG_LOCATION: str
TZ: str? TZ: str?

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "1.25.0" (01-11-2025) ## "1.25.0" (01-11-2025)
- Minor bugs fixed - Minor bugs fixed

View File

@@ -60,7 +60,7 @@ ROOT_URL: "http://homeassistant.local:3000"
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Installation ## Installation
@@ -76,3 +76,5 @@ comparison to installing any other Hass.io add-on.
1. Restart the addon, to apply any option that should be applied 1. Restart the addon, to apply any option that should be applied
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -87,7 +87,7 @@ ports_description:
3000/tcp: Web interface 3000/tcp: Web interface
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
APP_NAME: str? APP_NAME: str?
DOMAIN: str? DOMAIN: str?

View File

@@ -1,3 +1,4 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 25.10.2 (01-11-2025) ## 25.10.2 (01-11-2025)
- Update to latest version from gramps-project/gramps-web (changelog : https://github.com/gramps-project/gramps-web/releases) - Update to latest version from gramps-project/gramps-web (changelog : https://github.com/gramps-project/gramps-web/releases)

View File

@@ -89,7 +89,7 @@ GRAMPSWEB_DEFAULT_FROM_EMAIL: "gramps@example.com"
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Installation ## Installation
@@ -144,4 +144,5 @@ For data safety, regularly backup:
Create an issue on github Create an issue on github
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -95,7 +95,7 @@ ports_description:
5001/tcp: webui 5001/tcp: webui
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
CELERY_NUM_WORKERS: int CELERY_NUM_WORKERS: int
GUNICORN_NUM_WORKERS: int GUNICORN_NUM_WORKERS: int

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "1.7.50.4" (01-11-2025) ## "1.7.50.4" (01-11-2025)
- Minor bugs fixed - Minor bugs fixed

View File

@@ -44,6 +44,8 @@ The installation of this add-on is pretty straightforward and not different in c
## Configuration ## Configuration
Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
Webui can be found at <http://homeassistant:9191>. Webui can be found at <http://homeassistant:9191>.
Configurations can be done through the app webUI, except for the following options. Configurations can be done through the app webUI, except for the following options.
@@ -88,3 +90,5 @@ Create an issue on github
![illustration](https://getgrav.org/user/pages/01.tour/_easy-to-use/001-dashboard.png) ![illustration](https://getgrav.org/user/pages/01.tour/_easy-to-use/001-dashboard.png)
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -82,7 +82,7 @@ ports_description:
80/tcp: web interface 80/tcp: web interface
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
PGID: int PGID: int
PUID: int PUID: int

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 1.6.0-11 (16-09-2025) ## 1.6.0-11 (16-09-2025)
- Minor bugs fixed - Minor bugs fixed
## 1.6.0-10 (16-09-2025) ## 1.6.0-10 (16-09-2025)

View File

@@ -57,7 +57,7 @@ The addon automatically configures a PostgreSQL database for storing Guacamole c
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Installation ## Installation
@@ -87,3 +87,5 @@ After installation and first login:
Create an issue on [GitHub][repository] Create an issue on [GitHub][repository]
[repository]: https://github.com/alexbelgium/hassio-addons [repository]: https://github.com/alexbelgium/hassio-addons

View File

@@ -93,7 +93,7 @@ ports_description:
8080/tcp: web interface 8080/tcp: web interface
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
EXTENSIONS: str? EXTENSIONS: str?
TZ: str? TZ: str?

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "2.2.1-2" (02-11-2025) ## "2.2.1-2" (02-11-2025)
- Minor bugs fixed - Minor bugs fixed
## 2.2.1-2 (02-11-2025) ## 2.2.1-2 (02-11-2025)

View File

@@ -84,7 +84,7 @@ This addon supports mounting both local drives and remote SMB shares:
This addon supports custom scripts and environment variables through the `addon_config` mapping: This addon supports custom scripts and environment variables through the `addon_config` mapping:
- **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons) - **Custom scripts**: See [Running Custom Scripts in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Running-custom-scripts-in-Addons)
- **Environment variables**: See [Add Environment Variables to your Addon](https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon) - **env_vars option**: Use the add-on `env_vars` option to pass extra environment variables (uppercase or lowercase names). See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## Installation ## Installation
@@ -109,3 +109,5 @@ Create an issue on github, or ask on the [home assistant thread](https://communi
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg [armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg

View File

@@ -115,7 +115,7 @@ privileged:
- DAC_READ_SEARCH - DAC_READ_SEARCH
schema: schema:
env_vars: env_vars:
- name: match(^[A-Z0-9_]+$) - name: match(^[A-Za-z0-9_]+$)
value: str? value: str?
DB_DATABASE_NAME: str DB_DATABASE_NAME: str
DB_HOSTNAME: str DB_HOSTNAME: str

View File

@@ -1,3 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## "2.2.1" (01-11-2025) ## "2.2.1" (01-11-2025)
- Minor bugs fixed - Minor bugs fixed
## 2.2.1 (01-11-2025) ## 2.2.1 (01-11-2025)

Some files were not shown because too many files have changed in this diff Show More