Restore scratch setup bootstrap and live frontdoor sweep
This commit is contained in:
@@ -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
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user