[+] Docuseal (SQLite)
[+] Docuseal (Postgres)
This commit is contained in:
TheH2SO4
2024-05-15 22:25:58 +02:00
parent b528a0f4ec
commit 824f63a3ad
4 changed files with 79 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
# documentation: https://www.docuseal.co/
# slogan: Document Signing for Everyone free forever for individuals, extensible for businesses and developers. Open Source Alternative to DocuSign, PandaDoc and more.
# tags: documentation
# logo: svgs/docuseal.png
services:
docuseal:
image: 'docuseal/docuseal:latest'
environment:
- SERVICE_FQDN_DOCUSEAL
- 'HOST=${SERVICE_FQDN_DOCUSEAL}'
- 'DATABASE_URL=postgresql://$SERVICE_USER_POSTGRES:$SERVICE_PASSWORD_POSTGRES@postgresql:5432/${POSTGRES_DB}'
volumes:
- 'docuseal-data:/data'
depends_on:
postgresql:
condition: service_healthy
healthcheck:
test:
- CMD-SHELL
- 'wget -qO- http://localhost:3000'
interval: 5s
timeout: 20s
retries: 10
postgresql:
image: 'postgres:16-alpine'
volumes:
- 'postgresql-data:/var/lib/postgresql/data'
environment:
- POSTGRES_USER=$SERVICE_USER_POSTGRES
- POSTGRES_PASSWORD=$SERVICE_PASSWORD_POSTGRES
- 'POSTGRES_DB=${POSTGRES_DB:-docuseal}'
healthcheck:
test:
- CMD-SHELL
- 'pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}'
interval: 5s
timeout: 20s
retries: 10

View File

@@ -0,0 +1,20 @@
# documentation: https://www.docuseal.co/
# slogan: Document Signing for Everyone free forever for individuals, extensible for businesses and developers. Open Source Alternative to DocuSign, PandaDoc and more.
# tags: documentation
# logo: svgs/docuseal.png
services:
docuseal:
image: 'docuseal/docuseal:latest'
environment:
- SERVICE_FQDN_DOCUSEAL
- 'HOST=${SERVICE_FQDN_DOCUSEAL}'
volumes:
- 'docuseal-data:/data'
healthcheck:
test:
- CMD-SHELL
- 'wget -qO- http://localhost:3000'
interval: 5s
timeout: 20s
retries: 10