Skip to content

Commit f14bec9

Browse files
committed
docs: Update architecture diagram to reflect Temporal/MinIO architecture
- Removed Docker Registry from execution layer diagram - Updated diagram to show vertical workers with MinIO storage - Removed obsolete COMPOSE_PROJECT_NAME from example configuration
1 parent 37c15af commit f14bec9

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

docs/docs/concept/architecture.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ graph TB
5252
end
5353
5454
subgraph "Execution Layer"
55-
Docker[Docker Engine]
56-
Containers[Workflow Containers]
57-
Registry[Docker Registry]
55+
VerticalWorkers[Vertical Worker Containers]
56+
Tools[Pre-installed Toolchains]
57+
WorkerCache[Worker Cache /cache]
5858
end
5959
6060
subgraph "Storage Layer"
6161
PostgreSQL[PostgreSQL Database]
62-
Volumes[Docker Volumes]
62+
MinIO[MinIO S3 Storage]
6363
Cache[Result Cache]
6464
end
6565
@@ -73,15 +73,15 @@ graph TB
7373
7474
Temporal --> Workers
7575
Workers --> Scheduler
76-
Scheduler --> Docker
76+
Scheduler --> VerticalWorkers
7777
78-
Docker --> Containers
79-
Docker --> Registry
80-
Containers --> Volumes
78+
VerticalWorkers --> Tools
79+
VerticalWorkers --> WorkerCache
80+
VerticalWorkers --> MinIO
8181
8282
FastAPI --> PostgreSQL
8383
Workers --> PostgreSQL
84-
Containers --> Cache
84+
FastAPI --> MinIO
8585
```
8686

8787
## What Are the Main Components?
@@ -201,7 +201,6 @@ services:
201201
202202
Example configuration:
203203
```bash
204-
COMPOSE_PROJECT_NAME=fuzzforge
205204
DATABASE_URL=postgresql://postgres:postgres@postgres:5432/fuzzforge
206205
TEMPORAL_ADDRESS=temporal:7233
207206
S3_ENDPOINT=http://minio:9000

0 commit comments

Comments
 (0)