You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "use_bitwarden" environment variable is defined with a boolean value True or False in docker-compose.yaml, and the value is automatically coerced into the string "True" or "False" when imported into the environment. Hence, in entrypoint-unpriviled.sh, the conditional "$use_bitwarden" == true is always false.
PROPOSED SOLUTION: Replace the above check with "$use_bitwarden" == "True".