Files
2026-06-14 14:40:49 +08:00

11 lines
207 B
PowerShell

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