HomeLab/kutt/compose.yaml
2025-02-25 23:27:34 +01:00

24 lines
653 B
YAML

services:
kutt:
image: kutt/kutt:latest
volumes:
- ./db_data_sqlite:/var/lib/kutt
- ./custom:/kutt/custom
environment:
DB_FILENAME: "/var/lib/kutt/data.sqlite"
JWT_SECRET: "secret"
DEFAULT_DOMAIN: "example.com"
DISALLOW_ANONYMOUS_LINKS: "false"
CUSTOM_DOMAIN_USE_HTTPS: "true"
MAIL_ENABLED: "true"
MAIL_HOST: "mail.example.com"
MAIL_PORT: "465"
MAIL_USER: "no-reply"
MAIL_PASSWORD: "passwd"
MAIL_FROM: "no-reply@example.com"
MAIL_SECURE: "true"
REPORT_EMAIL: "admin@example.com"
CONTACT_EMAIL: "admin@example.com"
ports:
- 80:3000