diff --git a/setuper/setup.sh b/setuper/setup.sh index 15c4ad6..d0506b3 100644 --- a/setuper/setup.sh +++ b/setuper/setup.sh @@ -306,6 +306,13 @@ start_game_services() { cd "$SCRIPT_DIR" } +# Start infrastructure services (controller, web, telegram bot, scoreboard injector) +start_infrastructure_services() { + echo "Starting infrastructure services..." + docker compose -f "$ROOT_DIR/docker-compose.yaml" up -d --build + echo "Infrastructure services started." +} + # Main setup flow main() { echo "Starting setup process..." @@ -323,6 +330,7 @@ main() { if [ "$setup_fg" != "n" ]; then setup_firegex fi + start_infrastructure_services start_game_services echo "" echo "=== Setup Complete! ==="