stop.ps1 220 B

12345678
  1. $ErrorActionPreference = "Stop"
  2. Push-Location $PSScriptRoot
  3. try {
  4. docker compose --env-file .env down
  5. Write-Host "All services stopped (frontend + backend)." -ForegroundColor Green
  6. } finally {
  7. Pop-Location
  8. }