diff options
author | Jesús <heckyel@hyperbola.info> | 2021-12-18 19:18:16 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-12-18 19:18:16 -0500 |
commit | 920853594fc323a9fcefda5b99abc41b710a5c98 (patch) | |
tree | fc1bc75ea57dd5d8a860e8ba4d9b9009e14f4b2a | |
parent | ec2c70d63e15014e7f982a3d1d2633b2c4180973 (diff) | |
download | yt-local-docker-920853594fc323a9fcefda5b99abc41b710a5c98.tar.lz yt-local-docker-920853594fc323a9fcefda5b99abc41b710a5c98.tar.xz yt-local-docker-920853594fc323a9fcefda5b99abc41b710a5c98.zip |
fix variables config
-rw-r--r-- | core/entrypoint.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/entrypoint.sh b/core/entrypoint.sh index 468e11d..b2956ca 100644 --- a/core/entrypoint.sh +++ b/core/entrypoint.sh @@ -11,7 +11,7 @@ if [ ! -d "/root/.youtube-local" ]; then app_public = ${APP_PUBLIC:-False} # Set URL of app for example: http://localhost -app_url = ${APP_URL:-'http://localhost'} +app_url = "${APP_URL:-http://localhost}" # 0 - Off # 1 - On, except video @@ -34,7 +34,7 @@ allow_foreign_addresses = ${ALLOW_FOREIGN_ADDRESSES:-True} subtitles_mode = ${SUBTITLES_MODE:-0} # ISO 639 language code: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes -subtitles_language = ${SUBTITLES_LANG:-'en'} +subtitles_language = "${SUBTITLES_LANG:-en}" # 0 - Related videos disabled # 1 - Related videos always shown |