Modern Dockerized cron job management UI for DevOps and system administrators.
1.5K
Chronicle is a modern, visual cron job management platform built for DevOps Engineers and System Administrators.
This Docker image packages the Chronicle Next.js application in a production-ready, containerized form, suitable for self-hosting, scaling, and cloud deployments.
āļø Designed for real-world DevOps workflows ā ALB, EC2, Nginx, Docker Compose.
docker run -d --name chronicle -p 3000:3000 yashashavgoyal/chronicle:latest
Open in browser:
http://localhost:3000
| Variable | Description |
|---|---|
| NEXT_PUBLIC_SITE_URL | Public URL of the deployed Chronicle instance |
docker build --build-arg NEXT_PUBLIC_SITE_URL=https://chronicle.example.com -t yashashavgoyal/chronicle .
ā ļø NEXT_PUBLIC_SITE_URL is injected at build time (Next.js static optimization behavior).
version: "3.8"
services:
chronicle:
image: yashashavgoyal/chronicle:latest
container_name: chronicle
ports:
- "3000:3000"
restart: unless-stopped
Typical deployment architecture:
Internet ā AWS ALB ā EC2 ā Nginx ā Chronicle Containers
This Docker image is built directly from the official Chronicle codebase.
Source code, CI/CD workflows, and infrastructure details: https://github.com/YashashavGoyal/crontab.uiā
Chronicle is fully open-source ā audit, fork, and contribute.
Yashashav Goyal
MIT License Ā© 2025 Yashashav Goyal
Content type
Image
Digest
sha256:7a22c49d1ā¦
Size
71.3 MB
Last updated
8 months ago
docker pull yashashavgoyal/chronicle