mirror of
https://github.com/Dokploy/templates.git
synced 2026-04-29 12:11:22 -05:00
* feat: add template for colanode - Introduced Colanode Server (v0.1.6), an open-source alternative to Slack and Notion. - Added relevant details including description, logo, links to GitHub, website, and documentation. - Tagged with documentation, knowledge-base, and collaboration. * Update blueprints/colanode/docker-compose.yml * Update blueprints/colanode/docker-compose.yml * Update blueprints/colanode/docker-compose.yml * Update blueprints/colanode/docker-compose.yml --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
32 lines
679 B
TOML
32 lines
679 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
|
|
[config]
|
|
mounts = []
|
|
|
|
[[config.domains]]
|
|
serviceName = "server"
|
|
port = 3000
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
SERVER_NAME = "My Colanode"
|
|
SERVER_AVATAR = "https://colanode.com/assets/logo-black.png"
|
|
|
|
POSTGRES_USER = "colanode_user"
|
|
POSTGRES_PASSWORD = "your_postgres_password"
|
|
POSTGRES_DB = "colanode_db"
|
|
|
|
VALKEY_PASSWORD = "your_valkey_password"
|
|
|
|
MINIO_ROOT_USER = "admin"
|
|
MINIO_ROOT_PASSWORD = "your_minio_password"
|
|
|
|
SMTP_ENABLED = "false"
|
|
SMTP_HOST = "smtp.gmail.com"
|
|
SMTP_PORT = "587"
|
|
SMTP_USER = "your_smtp_username"
|
|
SMTP_PASSWORD = "your_smtp_password"
|
|
SMTP_EMAIL_FROM = "your_email@example.com"
|
|
SMTP_EMAIL_FROM_NAME = "Colanode"
|