Background job & workflow orchestration service for Reloop — BullMQ queues with built-in dashboard
1.7K
The Workflow Service is the background job and workflow orchestration microservice in the Reloop platform. It processes async tasks — such as sending emails, handling events, and running scheduled operations — using BullMQ queues, and includes a built-in Bull Board dashboard for real-time job monitoring.
Built on Bun + Elysia, backed by PostgreSQL and Redis.
/api/workflow/bull-board for job monitoringx-api-key header/api/workflow/openapi| Resource | Link |
|---|---|
| 📚 Documentation | reloop.sh/docs/setup/backend/workflow |
| 🌐 Production API | api.reloop.sh/api/workflow |
| 📜 OpenAPI Spec | reloop.sh/api/workflow/openapi |
| 🐙 Source Code | github.com/reloop-labs/reloop |
| 💬 Discord | discord.gg/reloop |
| 🐦 Twitter / X | @reloophq |
| 🆘 Support | reloop.sh/support |
docker pull reloopsh/be-workflow:latest
docker run -d \
-p 8017:8017 \
-e PG_URL=postgresql://user:password@host:5432/reloop \
-e REDIS_URL=redis://:password@host:6379 \
-e NATS_URL=nats://host:4222 \
-e BASE_URL=https://your-domain.com \
reloopsh/be-workflow:latest
http://localhost:8017/api/workflowhttp://localhost:8017/api/workflow/bull-board| Variable | Default | Description |
|---|---|---|
PORT | 8017 | Port the server listens on |
PG_URL | — | PostgreSQL connection string |
REDIS_URL | — | Redis connection string (also powers queues) |
NATS_URL | — | NATS messaging server URL |
BASE_URL | — | Public base URL of the platform |
NODE_ENV | production | Runtime environment |
This image is one of several microservices that make up the Reloop backend. See the full list at hub.docker.com/u/reloopsh.
Content type
Image
Digest
sha256:9b498f553…
Size
289.7 MB
Last updated
about 13 hours ago
docker pull reloopsh/be-workflow