Modern dashboard for Rustrak error tracking. Next.js-based, optional companion to rustrak-server.
2.0K
Modern, responsive dashboard for the Rustrak error tracking system. Built with Next.js 16 and designed to pair with rustrak/rustrak-server.
services:
server:
image: rustrak/rustrak-server:latest
ports:
- "8080:8080"
volumes:
- rustrak_data:/data
environment:
SESSION_SECRET_KEY: ${SESSION_SECRET_KEY}
CREATE_SUPERUSER: [email protected]:changeme123
ui:
image: rustrak/rustrak-ui:latest
ports:
- "3000:3000"
environment:
RUSTRAK_API_URL: http://server:8080
depends_on:
- server
volumes:
rustrak_data:
SESSION_SECRET_KEY=$(openssl rand -hex 32)
docker compose up -d
Open http://localhost:3000 and log in with your CREATE_SUPERUSER credentials.
| Variable | Required | Description |
|---|---|---|
RUSTRAK_API_URL | Yes | URL to the rustrak-server API |
Content type
Image
Digest
sha256:d257b916c…
Size
82.2 MB
Last updated
17 minutes ago
docker pull rustrak/rustrak-ui