peertube/entrypoint.sh

28 lines
551 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
file_env() {
local var="$1"
local fileVar="${var}_FILE"
local def="${2:-}"
if [ "${!var:-}" ] && [ "${!fileVar:-}" ]; then
echo >&2 "error: both $var and $fileVar are set (but are exclusive)"
exit 1
fi
local val="$def"
if [ "${!var:-}" ]; then
val="${!var}"
elif [ "${!fileVar:-}" ]; then
val="$(< "${!fileVar}")"
fi
export "$var"="$val"
unset "$fileVar"
}
file_env "PEERTUBE_DB_PASSWORD"
2021-05-06 08:52:31 +00:00
file_env "PEERTUBE_SMTP_PASSWORD"
2021-05-06 09:17:37 +00:00
exec /usr/local/bin/entrypoint.sh "$@"