18 lines
720 B
Plaintext
18 lines
720 B
Plaintext
# Copy to .env on deploy host (or set in Jenkins)
|
|
# These are passed to docker-compose during deployment
|
|
DOCKER_REGISTRY=docker.io
|
|
DOCKER_IMAGE=myorg/myapp
|
|
IMAGE_TAG=latest
|
|
|
|
# Required for authentication
|
|
SECRET_KEY=<random-32-byte-hex>
|
|
ADMIN_USER=admin # change this in production
|
|
ADMIN_PASSWORD=admin # change this in production
|
|
|
|
# Optional: check retention (limits DB growth)
|
|
# CHECK_RETENTION_COUNT=5000 # keep last N checks per service (default 5000)
|
|
# CHECK_RETENTION_DAYS=30 # also delete checks older than N days (0=disabled)
|
|
|
|
# Rollup: aggregate checks older than N hours into hourly buckets for 90+ day reporting
|
|
# ROLLUP_AGE_HOURS=24 # default 24; raw checks kept for this long, then rolled up
|