Files
devops-portal/run.sh
2026-04-07 22:06:27 +03:00

9 lines
196 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
echo "Starting services with Docker Compose..."
docker compose up --build -d
echo "Backend: http://localhost:8000/health"
echo "Frontend: http://localhost:8501"