9 lines
277 B
PowerShell
9 lines
277 B
PowerShell
. "$PSScriptRoot\lib\common.ps1"
|
|
|
|
Write-Step "Starting Cortex app"
|
|
Assert-Docker
|
|
Invoke-CortexCompose up -d cortex-db cortex-embeddings
|
|
Write-Step "Waiting for embedding model health"
|
|
Wait-HttpOk "http://localhost:8088/health" 300
|
|
Invoke-CortexCompose up -d --build cortex-app
|