fix: remove Out-Null from docker compose command in install.ps1 to allow output visibility

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-03-03 14:55:31 -08:00
parent cc244f624b
commit 33f88bf46c

View file

@ -247,7 +247,7 @@ if ($MigrationMode) {
Write-Step "Starting all SurfSense services"
Push-Location $InstallDir
Invoke-NativeSafe { docker compose up -d } | Out-Null
Invoke-NativeSafe { docker compose up -d }
Pop-Location
Write-Ok "All services started."
@ -256,7 +256,7 @@ if ($MigrationMode) {
} else {
Write-Step "Starting SurfSense"
Push-Location $InstallDir
Invoke-NativeSafe { docker compose up -d } | Out-Null
Invoke-NativeSafe { docker compose up -d }
Pop-Location
Write-Ok "All services started."
}