Lightweight multi-DB auth with minimal config, Redis integration, and email support.
1.3K
Tzylo Auth CE is a lightweight, self-hosted authentication service designed for modern applications. It provides email/password auth, token lifecycle, secure sessions, multi-database support, and a clean REST API โ all without heavy dependencies or complex setup.
This image contains the full Tzylo Auth CE server, packaged and ready to run in any Docker environment.
docker run -p 7200:7200 \
-e DATABASE_URL="postgresql://user:pass@host:5432/db" \
-e JWT_SECRET="supersecret" \
tzylo/auth-ce:latest
services:
auth:
image: tzylo/auth-ce:latest
ports:
- "7200:7200"
environment:
DATABASE_URL: "postgresql://user:pass@db:5432/db"
JWT_SECRET: "supersecret"
DATABASE_URL โ connection string for your databaseJWT_SECRET โ secret used for signing tokensContent type
Image
Digest
sha256:bb7ab4e97โฆ
Size
148.7 MB
Last updated
9 months ago
docker pull tzylo/auth-ce