Sending domain management service for Reloop — DNS, DKIM, MX records, and domain verification.
5.6K
The Domain Service is the sending domain management microservice in the Reloop platform. It handles everything needed to set up and verify custom sending domains — including DNS record generation, DKIM key pair management, MX record configuration, and domain verification status tracking.
Built on Bun + Elysia, backed by PostgreSQL and Redis.
/api/domain/openapi| Resource | Link |
|---|---|
| 📚 Documentation | reloop.sh/docs/setup/backend/domain |
| 🌐 Production API | api.reloop.sh/api/domain |
| 📜 OpenAPI Spec | reloop.sh/api/domain/openapi |
| 🐙 Source Code | github.com/reloop-labs/reloop |
| 💬 Discord | discord.gg/reloop |
| 🐦 Twitter / X | @reloophq |
| 🆘 Support | reloop.sh/support |
docker pull reloopsh/be-domain:latest
docker run -d \
-p 8011:8011 \
-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 \
-e HOST_DOMAIN=reloop.sh \
-e DKIM_SELECTOR=reloop \
reloopsh/be-domain:latest
The service will be available at http://localhost:8011/api/domain.
| Variable | Default | Description |
|---|---|---|
PORT | 8011 | Port the server listens on |
PG_URL | — | PostgreSQL connection string |
REDIS_URL | — | Redis connection string |
NATS_URL | — | NATS messaging server URL |
BASE_URL | — | Public base URL of the platform |
HOST_DOMAIN | reloop.sh | The platform's root sending domain |
DKIM_SELECTOR | reloop | DKIM selector used in DNS TXT records |
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:54994c547…
Size
285.3 MB
Last updated
3 days ago
docker pull reloopsh/be-domain