Files
templates/blueprints/kutt/docker-compose.yml
Vincent Vu 08273b4a14 This PR replaces and supersedes #39. (#162)
* feat(blueprint): added docuseal

* feat: add Docuseal document management system

* feat: restructure docker-compose for Docuseal application setup

* feat(docker-compose): remove unused port mapping and clean up redis service configuration

* Update blueprints/docuseal/docker-compose.yml

* Update blueprints/docuseal/docker-compose.yml

* Update blueprints/docuseal/template.toml

* This PR replaces and supersedes #39.

Changes and improvements:
- Fully resolved merge conflict in meta.json
- Added missing JWT secret handling using `${password:32}`
- Synced `template.toml` and `docker-compose.yml` with proper environment variable mapping
- Ensured domain and service configuration matches Dokploy standards
- Minor cleanup for clarity and deployment safety

Original credit to @maelpr for the initial submission.

This version ensures a clean, deployable, and secure Dokploy template for Kutt.

* fix: add missing commas in environment variable definitions

* Update blueprints/kutt/template.toml

---------

Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
2025-06-19 22:47:44 -06:00

24 lines
701 B
YAML

services:
kutt:
image: kutt/kutt:main
volumes:
- kutt_db_data:/var/lib/kutt
- ./kutt/custom:/kutt/custom
environment:
DB_FILENAME: "/var/lib/kutt/data.sqlite"
JWT_SECRET: ${JWT_SECRET}
DEFAULT_DOMAIN: ${DOMAIN}
TRUST_PROXY: ${TRUST_PROXY}
DISALLOW_ANONYMOUS_LINKS: ${DISALLOW_ANONYMOUS_LINKS}
CUSTOM_DOMAIN_USE_HTTPS: ${CUSTOM_DOMAIN_USE_HTTPS}
MAIL_ENABLED: ${MAIL_ENABLED}
MAIL_HOST: ${MAIL_HOST}
MAIL_PORT: ${MAIL_PORT}
MAIL_SECURE: ${MAIL_SECURE}
MAIL_USER: ${MAIL_USER}
MAIL_FROM: ${MAIL_FROM}
MAIL_PASSWORD: ${MAIL_PASSWORD}
CONTACT_EMAIL: ${CONTACT_EMAIL}
volumes:
kutt_db_data: {}