11 lines
263 B
Bash
Executable File
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" |