mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 23:45:24 +02:00
* feat: add rustrak and rustrak-full templates - rustrak: server-only with SQLite, single service, no external DB - rustrak-full: server + Next.js dashboard + PostgreSQL Both use abians7/rustrak-server:v0.2.1, Sentry-compatible error tracking * chore: update rustrak logo to new design
21 lines
391 B
YAML
21 lines
391 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
rustrak:
|
|
image: abians7/rustrak-server:v0.2.1
|
|
restart: unless-stopped
|
|
environment:
|
|
- HOST=0.0.0.0
|
|
- PORT=8080
|
|
- RUST_LOG=info
|
|
- SSL_PROXY=true
|
|
- SESSION_SECRET_KEY=${SESSION_SECRET_KEY}
|
|
- CREATE_SUPERUSER=${CREATE_SUPERUSER}
|
|
volumes:
|
|
- rustrak_data:/data
|
|
ports:
|
|
- 8080
|
|
|
|
volumes:
|
|
rustrak_data:
|