mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
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:
38
blueprints/docuseal/docker-compose.yml
Normal file
38
blueprints/docuseal/docker-compose.yml
Normal 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:
|
||||||
BIN
blueprints/docuseal/docuseal.png
Normal file
BIN
blueprints/docuseal/docuseal.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
15
blueprints/docuseal/template.toml
Normal file
15
blueprints/docuseal/template.toml
Normal 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}"
|
||||||
13
meta.json
13
meta.json
@@ -2440,5 +2440,18 @@
|
|||||||
"feature-toggle",
|
"feature-toggle",
|
||||||
"remote-configuration"
|
"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"]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user