diff --git a/entrypoint.sh b/entrypoint.sh index f84cb83..87660c6 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -11,6 +11,12 @@ do do # Get environment variable value=$(eval echo "\$$key") + + # Set default value for APPNAMEOVERWRITE if empty + if [ "$key" = "APPNAMEOVERWRITE" ] && [ -z "$value" ]; then + value="FF Admin" + fi + echo "replace $key by $value" # replace __[variable_name]__ value with environment variable