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:
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}"
|
||||
Reference in New Issue
Block a user