mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-26 01:25:23 +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>
24 lines
701 B
YAML
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: {} |