HNTAI / services /ai-service /run_local.ps1
Adhil Krishna G
Deployed to Live
5aafb3a
Raw
History Blame
251 Bytes
Param(
[switch]$Build
)
Set-Location -Path (Split-Path -Parent $MyInvocation.MyCommand.Definition)
if ($Build) {
docker compose build
}
docker compose up -d
Write-Host "ai-service is starting. Use 'docker compose logs -f' to follow logs."