Files
devops-portal/run.sh
2026-04-08 00:29:49 +03:00

11 lines
254 B
Bash
Executable File

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