Restore scratch setup bootstrap and live frontdoor sweep

This commit is contained in:
master
2026-03-09 01:42:24 +02:00
parent abda749ffd
commit c9686edf07
13 changed files with 766 additions and 63 deletions

View File

@@ -54,8 +54,9 @@ The scripts will:
2. Offer to install hosts file entries automatically
3. Copy `env/stellaops.env.example` to `.env` if needed (works out of the box)
4. Start infrastructure and wait for healthy containers
5. Build .NET solutions and Docker images
6. Launch the full platform with health checks
5. Create or reuse the external frontdoor Docker network from `.env` (`FRONTDOOR_NETWORK`, default `stellaops_frontdoor`)
6. Build .NET solutions and Docker images
7. Launch the full platform with health checks
Open **https://stella-ops.local** when setup completes.
@@ -89,6 +90,13 @@ docker compose -f docker-compose.dev.yml ps # verify all healthy
### 4. Start the full platform
Create or reuse the external frontdoor network first:
```bash
docker network inspect "${FRONTDOOR_NETWORK:-stellaops_frontdoor}" >/dev/null 2>&1 || \
docker network create "${FRONTDOOR_NETWORK:-stellaops_frontdoor}"
```
```bash
docker compose -f docker-compose.stella-ops.yml up -d
```