Files
yuan-lab-llm--clawmanager/e2e/scripts/e2e-down.ps1
T
2026-06-14 14:40:49 +08:00

11 lines
217 B
PowerShell

Set-StrictMode -Version Latest
$ErrorActionPreference = "Stop"
Push-Location (Join-Path $PSScriptRoot "..")
try {
docker compose -f docker/docker-compose.e2e.yml down --remove-orphans
} finally {
Pop-Location
}