Synapse AI — stateless API server for scale mode. Enqueues to Redis, streams SSE, reads PG.
5.0K
Stateless HTTP API server for Synapse AI scale mode. Handles all inbound requests — enqueuing jobs to Redis, serving real-time SSE streams from Redis Streams, and reading run status from Postgres. Does not execute workflows; pair it with the worker image for that.
Run one or fifty behind a load balancer — they hold no job state.
| Image | Role |
|---|---|
synapseorchai/synapse-ai:latest | Full app — API + frontend (standalone mode) |
synapseorchai/synapse-ai-api-server:latest | This image — stateless API server (scale mode) |
synapseorchai/synapse-ai-worker:latest | Worker process — pulls jobs and executes orchestrations |
docker run -d \
-p 8765:8765 \
-e REDIS_URL=redis://your-redis:6379/0 \
-e SCALE_POSTGRES_URL=postgresql://user:pass@pgbouncer:6432/synapse_scale \
synapseorchai/synapse-ai-api-server:latest
Content type
Image
Digest
sha256:c8022837d…
Size
1.2 GB
Last updated
about 1 month ago
docker pull synapseorchai/synapse-ai-api-server