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 * feat(blueprints): replace unsend with usesend configuration * feat(meta): add Uptime Kuma monitoring tool to the blueprint * fix(docker-compose): update MinIO image to latest version --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
74 lines
1.7 KiB
YAML
74 lines
1.7 KiB
YAML
name: usesend-prod
|
|
|
|
services:
|
|
usesend-db-prod:
|
|
image: postgres:16
|
|
|
|
restart: always
|
|
environment:
|
|
- POSTGRES_USER=${POSTGRES_USER}
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
|
- POSTGRES_DB=${POSTGRES_DB}
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER}"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
# ports:
|
|
# - "5432:5432"
|
|
volumes:
|
|
- database:/var/lib/postgresql/data
|
|
|
|
usesend-redis-prod:
|
|
image: redis:7
|
|
|
|
restart: always
|
|
# ports:
|
|
# - "6379:6379"
|
|
volumes:
|
|
- cache:/data
|
|
command: ["redis-server", "--maxmemory-policy", "noeviction"]
|
|
|
|
usesend-storage-prod:
|
|
image: minio/minio:latest
|
|
|
|
ports:
|
|
- 9002
|
|
- 9001
|
|
volumes:
|
|
- storage:/data
|
|
environment:
|
|
MINIO_ROOT_USER: usesend
|
|
MINIO_ROOT_PASSWORD: password
|
|
entrypoint: sh
|
|
command: -c 'mkdir -p /data/usesend && minio server /data --console-address ":9001" --address ":9002"'
|
|
|
|
usesend:
|
|
image: usesend/usesend:latest
|
|
restart: always
|
|
ports:
|
|
- ${PORT:-3000}
|
|
environment:
|
|
- PORT=${PORT:-3000}
|
|
- DATABASE_URL=${DATABASE_URL}
|
|
- NEXTAUTH_URL=${NEXTAUTH_URL}
|
|
- NEXTAUTH_SECRET=${NEXTAUTH_SECRET}
|
|
- AWS_DEFAULT_REGION=${AWS_DEFAULT_REGION}
|
|
- AWS_SECRET_KEY=${AWS_SECRET_KEY}
|
|
- AWS_ACCESS_KEY=${AWS_ACCESS_KEY}
|
|
- GITHUB_ID=${GITHUB_ID}
|
|
- GITHUB_SECRET=${GITHUB_SECRET}
|
|
- REDIS_URL=${REDIS_URL}
|
|
- NEXT_PUBLIC_IS_CLOUD=${NEXT_PUBLIC_IS_CLOUD:-false}
|
|
- API_RATE_LIMIT=${API_RATE_LIMIT:-1}
|
|
depends_on:
|
|
usesend-db-prod:
|
|
condition: service_healthy
|
|
usesend-redis-prod:
|
|
condition: service_started
|
|
|
|
volumes:
|
|
database:
|
|
cache:
|
|
storage:
|