feat: add Docker Compose dev environment with nginx reverse proxy

This commit is contained in:
Stevan Freeborn
2026-07-29 16:29:19 -05:00
parent 94f113e4cc
commit f206dcd5fb
9 changed files with 297 additions and 0 deletions
@@ -0,0 +1,15 @@
<#
.SYNOPSIS
Stops the development environment and removes containers/networks.
#>
$composeFile = Join-Path $PSScriptRoot '..\docker-compose.dev.yml'
if (-not (Test-Path $composeFile)) {
Write-Host "Compose file not found at $composeFile" -ForegroundColor Red
exit 1
}
Write-Host "Stopping development environment..." -ForegroundColor Cyan
docker compose -f $composeFile down
exit $LASTEXITCODE