mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
Add Chief-Onboarding blueprint with Docker Compose and configuration files
- Introduced Docker Compose setup for Chief-Onboarding service, including environment variables and volume configuration. - Added logo for Chief-Onboarding. - Created template.toml for Chief-Onboarding with default variables for configuration. - Updated meta.json to include Chief-Onboarding with detailed description, logo, and relevant links.
This commit is contained in:
parent
8baf6eda5c
commit
6506639ca7
26
blueprints/chiefonboarding/docker-compose.yml
Normal file
26
blueprints/chiefonboarding/docker-compose.yml
Normal file
@ -0,0 +1,26 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
chiefonboarding:
|
||||
image: chiefonboarding/chiefonboarding:v2.2.5
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- SECRET_KEY=${SECRET_KEY}
|
||||
- DATABASE_URL=postgres://postgres:${DB_PASSWORD}@db:5432/chiefonboarding
|
||||
- ALLOWED_HOSTS=${DOMAIN}
|
||||
ports:
|
||||
- 8000
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
db:
|
||||
image: postgres:13
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- POSTGRES_PASSWORD=${DB_PASSWORD}
|
||||
- POSTGRES_DB=chiefonboarding
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql/data
|
||||
|
||||
volumes:
|
||||
postgres_data:
|
BIN
blueprints/chiefonboarding/logo.png
Normal file
BIN
blueprints/chiefonboarding/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
15
blueprints/chiefonboarding/template.toml
Normal file
15
blueprints/chiefonboarding/template.toml
Normal file
@ -0,0 +1,15 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
db_password = "${password:16}"
|
||||
secret_key = "${password:16}"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "chiefonboarding"
|
||||
port = 8000
|
||||
host = "${main_domain}"
|
||||
|
||||
[config.env]
|
||||
DB_PASSWORD = "${db_password}"
|
||||
SECRET_KEY = "${secret_key}"
|
||||
DOMAIN = "${main_domain}"
|
73
meta.json
73
meta.json
@ -2292,5 +2292,78 @@
|
||||
"Documents",
|
||||
"E-Commerce"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "carbone",
|
||||
"name": "Carbone",
|
||||
"version": "4.25.5",
|
||||
"description": "Carbone is a high-performance, self-hosted document generation engine. It allows you to generate reports, invoices, and documents in various formats (e.g., PDF, DOCX, XLSX) using JSON data and template-based rendering.",
|
||||
"logo": "logo.png",
|
||||
"links": {
|
||||
"github": "https://github.com/carboneio/carbone",
|
||||
"website": "https://carbone.io/",
|
||||
"docs": "https://carbone.io/documentation/design/overview/getting-started.html"
|
||||
},
|
||||
"tags": [
|
||||
"Document Generation",
|
||||
"Automation",
|
||||
"Reporting",
|
||||
"Productivity"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "changedetection",
|
||||
"name": "Change Detection",
|
||||
"version": "0.49",
|
||||
"description": "Changedetection.io is an intelligent tool designed to monitor changes on websites. Perfect for smart shoppers, data journalists, research engineers, data scientists, and security researchers.",
|
||||
"logo": "logo.png",
|
||||
"links": {
|
||||
"github": "https://github.com/dgtlmoon/changedetection.io",
|
||||
"website": "https://changedetection.io",
|
||||
"docs": "https://github.com/dgtlmoon/changedetection.io/wiki"
|
||||
},
|
||||
"tags": [
|
||||
"Monitoring",
|
||||
"Data",
|
||||
"Notifications"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "chevereto",
|
||||
"name": "Chevereto",
|
||||
"version": "4",
|
||||
"description": "Chevereto is a powerful, self-hosted image and video hosting platform designed for individuals, communities, and businesses. It allows users to upload, organize, and share media effortlessly.",
|
||||
"logo": "logo.png",
|
||||
"links": {
|
||||
"github": "https://github.com/chevereto/chevereto",
|
||||
"website": "https://chevereto.com/",
|
||||
"docs": "https://v4-docs.chevereto.com/"
|
||||
},
|
||||
"tags": [
|
||||
"Image Hosting",
|
||||
"File Management",
|
||||
"Open Source",
|
||||
"Multi-User",
|
||||
"Private Albums"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "chiefonboarding",
|
||||
"name": "Chief-Onboarding",
|
||||
"version": "v2.2.5",
|
||||
"description": "Chief-Onboarding is a comprehensive, self-hosted onboarding and employee management platform designed for businesses to streamline their onboarding processes.",
|
||||
"logo": "logo.png",
|
||||
"links": {
|
||||
"github": "https://github.com/chiefonboarding/chiefonboarding",
|
||||
"website": "https://demo.chiefonboarding.com/",
|
||||
"docs": "https://docs.chiefonboarding.com/"
|
||||
},
|
||||
"tags": [
|
||||
"Employee Onboarding",
|
||||
"HR Management",
|
||||
"Task Tracking",
|
||||
"Role-Based Access",
|
||||
"Document Management"
|
||||
]
|
||||
}
|
||||
]
|
Loading…
Reference in New Issue
Block a user