mirror of
https://github.com/samply/bridgehead.git
synced 2025-07-12 18:50:21 +02:00
8 lines
240 B
Bash
8 lines
240 B
Bash
#!/bin/bash -e
|
|
|
|
if [ "$ENABLE_LOGIN" == true ]; then
|
|
log INFO "Login setup detected -- will start Login services."
|
|
OVERRIDE+=" -f ./$PROJECT/modules/login-compose.yml"
|
|
KEYCLOAK_DB_PASSWORD="$(generate_password \"local Keycloak\")"
|
|
fi
|