Changeset 0.30.2 cs2 (#202)

Co-authored-by: Jeffrey Smith <jasafpro@gmail.com>
Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
This commit is contained in:
2026-03-18 18:05:58 +00:00
committed by xcaliber
parent 7b0b6eb061
commit 5883cb50e2
17 changed files with 1231 additions and 31 deletions

View File

@@ -114,8 +114,8 @@ docker compose --profile dev up # include Adminer DB UI
Build and push both images:
```bash
docker build -f server/Dockerfile -t your-registry/switchboard-api:0.11.0 server/
docker build -f Dockerfile.frontend -t your-registry/switchboard-fe:0.11.0 .
docker build -f server/Dockerfile -t your-registry/switchboard-api:latest server/
docker build -f Dockerfile.frontend -t your-registry/switchboard-fe:latest .
```
**Backend deployment:**
@@ -123,7 +123,7 @@ docker build -f Dockerfile.frontend -t your-registry/switchboard-fe:0.11.0 .
```yaml
containers:
- name: api
image: your-registry/switchboard-api:0.11.0
image: your-registry/switchboard-api:latest
ports:
- containerPort: 8080
env:
@@ -143,7 +143,7 @@ containers:
```yaml
containers:
- name: frontend
image: your-registry/switchboard-fe:0.11.0
image: your-registry/switchboard-fe:latest
ports:
- containerPort: 80
env: