mirror of
https://github.com/samply/bridgehead.git
synced 2025-09-11 11:31:22 +02:00
9 lines
199 B
Bash
9 lines
199 B
Bash
#!/bin/bash -e
|
|
|
|
function scoutSetup() {
|
|
if [[ -n "$ENABLE_SCOUT" && -n "$SCOUT_BASIC_AUTH_USERS" ]]; then
|
|
echo "Starting scout."
|
|
OVERRIDE+=" -f ./modules/scout-compose.yml"
|
|
fi
|
|
}
|