diff --git a/server/start.sh b/server/start.sh index c0825dd519..4d1bc9a78b 100755 --- a/server/start.sh +++ b/server/start.sh @@ -20,4 +20,9 @@ if [ "$DB_PASSWORD_FILE" ]; then unset DB_PASSWORD_FILE fi +if [ "$REDIS_PASSWORD_FILE" ]; then + export REDIS_PASSWORD=$(cat $REDIS_PASSWORD_FILE) + unset REDIS_PASSWORD_FILE +fi + exec node dist/main $1