Files
devops-portal/run.sh
2026-04-08 00:56:35 +03:00

11 lines
263 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 frontend
echo "Backend: http://localhost:8000/health"
echo "Frontend: http://localhost:8501"