feat(blueprint): added docuseal (#159)

* 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

---------

Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
This commit is contained in:
Vincent Vu
2025-06-02 06:55:13 +10:00
committed by GitHub
parent b51036d4af
commit 2a342e8465
4 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
services:
app:
image: docuseal/docuseal:latest
volumes:
- docuseal:/data/docuseal
depends_on:
docu-postgres:
condition: service_healthy
restart: unless-stopped
environment:
- DATABASE_URL=postgresql://${POSTGRES_USER:-docuseal}:${POSTGRES_PASSWORD}@docu-postgres:5432/${POSTGRES_DB:-docuseal}
docu-postgres:
image: postgres:latest
volumes:
- docuseal-db:/var/lib/postgresql/data
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-docuseal} -d ${POSTGRES_DB:-docuseal}"]
interval: 10s
timeout: 5s
retries: 5
docu-redis:
image: redis:alpine
restart: always
volumes:
- docuseal-redis-data:/data
volumes:
docuseal:
docuseal-db:
docuseal-redis-data:

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -0,0 +1,15 @@
[variables]
main_domain = "${domain}"
[config]
env = [
"POSTGRES_USER=postgres",
"POSTGRES_PASSWORD=postgres",
"POSTGRES_DB=docuseal",
]
mounts = []
[[config.domains]]
serviceName = "app"
port = 3_000
host = "${main_domain}"

View File

@@ -2440,5 +2440,18 @@
"feature-toggle",
"remote-configuration"
]
},
{
"id": "docuseal",
"name": "Docuseal",
"version": "latest",
"description": "Docuseal is a self-hosted document management system.",
"logo": "docuseal.png",
"links": {
"github": "https://github.com/docusealco/docuseal",
"website": "https://www.docuseal.com/",
"docs": "https://www.docuseal.com/"
},
"tags": ["document-signing"]
}
]