mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-17 18:35:19 +02:00
fix: remove Out-Null from docker compose command in install.ps1 to allow output visibility
This commit is contained in:
parent
cc244f624b
commit
33f88bf46c
1 changed files with 2 additions and 2 deletions
|
|
@ -247,7 +247,7 @@ if ($MigrationMode) {
|
||||||
|
|
||||||
Write-Step "Starting all SurfSense services"
|
Write-Step "Starting all SurfSense services"
|
||||||
Push-Location $InstallDir
|
Push-Location $InstallDir
|
||||||
Invoke-NativeSafe { docker compose up -d } | Out-Null
|
Invoke-NativeSafe { docker compose up -d }
|
||||||
Pop-Location
|
Pop-Location
|
||||||
Write-Ok "All services started."
|
Write-Ok "All services started."
|
||||||
|
|
||||||
|
|
@ -256,7 +256,7 @@ if ($MigrationMode) {
|
||||||
} else {
|
} else {
|
||||||
Write-Step "Starting SurfSense"
|
Write-Step "Starting SurfSense"
|
||||||
Push-Location $InstallDir
|
Push-Location $InstallDir
|
||||||
Invoke-NativeSafe { docker compose up -d } | Out-Null
|
Invoke-NativeSafe { docker compose up -d }
|
||||||
Pop-Location
|
Pop-Location
|
||||||
Write-Ok "All services started."
|
Write-Ok "All services started."
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue