Hi guys,
I have started to create my own several Add-ons but without building the docker image. I preferred to have an Add-on like you would deploy a docker container: a base image from docker io, mapping some dirs for persistency, bind tcp ports and passing several environments.
All of these could be made according to Add-on Configuration documentation (with a small mention regarding to binding dirs by using map
, but that would be another discussion).
I started to need a way to pass values for environmemt variables from UI like it can be made for Options / Schema along with Add-on translations. I understand that this mechanism is created to pass options as variables inside the container and to be read with bashio
module into an entrypoint script, but in my case I don’t want to mess with building a new image as long as I can find a good enough image on docker io.
For example, here I already tried to pass somehow the options values to environment for my redis-stack
Add-on. It ends up without interpreting the yaml, therefore my envs won’t have the values of options, just a plain text like it appears starting with line 36
.
Maybe this can be made already and I didn’t find yet how to do that. Could you guide me, guys ?
To be honest, that would be a nice feature if it doesn’t exist yet.