mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
* 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>
26 lines
523 B
TOML
26 lines
523 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
jwt_secret = "${password:32}"
|
|
|
|
[config]
|
|
env = [
|
|
"JWT_SECRET=${jwt_secret}",
|
|
"DEFAULT_DOMAIN=${main_domain}",
|
|
"TRUST_PROXY=false",
|
|
"DISALLOW_ANONYMOUS_LINKS=true",
|
|
"CUSTOM_DOMAIN_USE_HTTPS=true",
|
|
"MAIL_ENABLED=false",
|
|
"MAIL_HOST=''",
|
|
"MAIL_PORT='22'",
|
|
"MAIL_SECURE=true",
|
|
"MAIL_USER=''",
|
|
"MAIL_FROM=''",
|
|
"MAIL_PASSWORD=''",
|
|
"CONTACT_EMAIL=''"
|
|
]
|
|
mounts = []
|
|
|
|
[[config.domains]]
|
|
serviceName = "kutt"
|
|
port = 3_000
|
|
host = "${main_domain}" |