mirror of
https://github.com/documenso/documenso.git
synced 2026-06-30 00:01:09 +10:00
f9cb8d84ed
Resolved conflicts:
- create-document-data.ts: merged initialData + originalData/originalMimeType
- files.helpers.ts: kept both imports
- envelope-drop-zone-wrapper.tsx: adopted buildDropzoneRejectionDescription
- create-envelope-items.ts: adopted UNSAFE_createEnvelopeItems
- create-envelope.ts: integrated convertToPdfIfNeeded into createEnvelopeRouteCaller
Extended putPdfFileServerSide to accept { initialData, originalData,
originalMimeType } options; updated seal-document.handler call site.
64 lines
1.2 KiB
YAML
64 lines
1.2 KiB
YAML
name: documenso-development
|
|
|
|
services:
|
|
database:
|
|
image: postgres:15
|
|
container_name: database
|
|
volumes:
|
|
- documenso_database:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ['CMD-SHELL', 'pg_isready -U ${POSTGRES_USER}']
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
environment:
|
|
- POSTGRES_USER=documenso
|
|
- POSTGRES_PASSWORD=password
|
|
- POSTGRES_DB=documenso
|
|
ports:
|
|
- 54320:5432
|
|
|
|
inbucket:
|
|
image: inbucket/inbucket
|
|
container_name: mailserver
|
|
ports:
|
|
- 9000:9000
|
|
- 2500:2500
|
|
- 1100:1100
|
|
|
|
redis:
|
|
image: redis:8-alpine
|
|
container_name: redis
|
|
ports:
|
|
- 63790:6379
|
|
volumes:
|
|
- redis:/data
|
|
|
|
minio:
|
|
image: minio/minio
|
|
container_name: minio
|
|
ports:
|
|
- 9002:9002
|
|
- 9001:9001
|
|
volumes:
|
|
- minio:/data
|
|
environment:
|
|
MINIO_ROOT_USER: documenso
|
|
MINIO_ROOT_PASSWORD: password
|
|
entrypoint: sh
|
|
command: -c 'mkdir -p /data/documenso && minio server /data --console-address ":9001" --address ":9002"'
|
|
|
|
gotenberg:
|
|
image: gotenberg/gotenberg:8
|
|
container_name: gotenberg
|
|
ports:
|
|
- 3001:3000
|
|
command:
|
|
- 'gotenberg'
|
|
- '--api-timeout=30s'
|
|
|
|
volumes:
|
|
minio:
|
|
redis:
|
|
documenso_database:
|