mirror of
https://github.com/documenso/documenso.git
synced 2026-07-09 20:45:00 +10:00
138d663c25
Merge origin/main into feat/external-2fa-codes. Resolve formatting conflicts caused by biome rollout; preserve both feature streams: PR's external 2FA token + signing-session 2FA proof additions plus main's RateLimit/RecipientExpired/signingReminders/date-auto-insert. In complete-document-with-token.ts, drop the duplicate early field-fetching block introduced when main moved that logic later with date auto-insert support; keep the EXTERNAL_TWO_FACTOR_AUTH check using derivedRecipientActionAuth.
55 lines
1.1 KiB
YAML
55 lines
1.1 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"'
|
|
|
|
volumes:
|
|
minio:
|
|
redis:
|
|
documenso_database:
|