Deleted old faststart setup

This commit is contained in:
Nirodan
2026-01-22 12:03:36 +01:00
parent 9d7e0023f4
commit 3d1bb93dfd
2 changed files with 0 additions and 16 deletions
View File
-16
View File
@@ -1,16 +0,0 @@
# startup.ps1 - rebuilds and starts the stack fresh each time
Set-StrictMode -Version Latest
$ErrorActionPreference = "Stop"
# always operate from repo root
Set-Location $PSScriptRoot
Write-Host "Stopping and removing previous containers/images..." -ForegroundColor Cyan
docker compose -f docker-compose.dev.yml down --rmi local --remove-orphans
Write-Host "Building + starting stack..." -ForegroundColor Cyan
docker compose -f docker-compose.dev.yml up --build --force-recreate -d
Write-Host "Services status:" -ForegroundColor Cyan
docker compose -f docker-compose.dev.yml ps
Write-Host "Open http://localhost:5050/" -ForegroundColor Green