如何在 Shibboleth xml 文件中 use/access docker 环境变量?
How to use/access docker environment variables in Shibboleth xml files?
我正在尝试将我的 docker 环境变量注入到我的 shibboleth2.xml 文件中。 Shibboleth 根本无法识别我的环境变量。
例如
<ApplicationDefaults entityID="${MY_ENV_VARIABLE}">
我想知道是否有办法让 Shibboleth 访问这些值?
谢谢。
Envsubst 可用于替换文件中的环境变量。
envsubst < input.file > output.file
我正在尝试将我的 docker 环境变量注入到我的 shibboleth2.xml 文件中。 Shibboleth 根本无法识别我的环境变量。
例如
<ApplicationDefaults entityID="${MY_ENV_VARIABLE}">
我想知道是否有办法让 Shibboleth 访问这些值?
谢谢。
Envsubst 可用于替换文件中的环境变量。
envsubst < input.file > output.file