Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions blueprints/tela/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
services:
proxy:
image: ghcr.io/zcag/tela-proxy:0.7.0
restart: unless-stopped
environment:
- TELA_SITE_ADDRESS=:80
- TELA_UPSTREAM_BACKEND=backend:8080
- TELA_UPSTREAM_FRONTEND=frontend:80
depends_on:
- backend
- frontend
volumes:
- caddy-data:/data
- caddy-config:/config

backend:
image: ghcr.io/zcag/tela-backend:0.7.0
restart: unless-stopped
environment:
- TELA_PUBLIC_BASE_URL=${TELA_PUBLIC_BASE_URL}
- TELA_DATABASE_URL=postgres://tela:${TELA_PG_PASSWORD}@postgres:5432/tela?sslmode=disable
- TELA_SHARE_SECRET=${TELA_SHARE_SECRET}
- TELA_API_KEY_SECRET=${TELA_API_KEY_SECRET}
- TELA_DECK_URL=http://deck:3344
- TELA_GOTENBERG_URL=http://gotenberg:3000
- TELA_PDF_RENDER_BASE_URL=http://proxy
depends_on:
postgres:
condition: service_healthy

frontend:
image: ghcr.io/zcag/tela-frontend:0.7.0
restart: unless-stopped

postgres:
image: pgvector/pgvector:pg17
restart: unless-stopped
environment:
- POSTGRES_USER=tela
- POSTGRES_PASSWORD=${TELA_PG_PASSWORD}
- POSTGRES_DB=tela
healthcheck:
test: ["CMD-SHELL", "pg_isready -U tela -d tela"]
interval: 5s
timeout: 5s
retries: 20
start_period: 10s
volumes:
- pgdata:/var/lib/postgresql/data

deck:
image: ghcr.io/zcag/tela-deck:0.7.0
restart: unless-stopped
volumes:
- deckcache:/data

gotenberg:
image: gotenberg/gotenberg:8
restart: unless-stopped

volumes:
pgdata:
deckcache:
caddy-data:
caddy-config:
Binary file added blueprints/tela/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions blueprints/tela/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[variables]
main_domain = "${domain}"
pg_password = "${password:32}"
share_secret = "${password:64}"
api_key_secret = "${password:64}"

[config]
env = [
"TELA_PUBLIC_BASE_URL=https://${main_domain}",
"TELA_PG_PASSWORD=${pg_password}",
"TELA_SHARE_SECRET=${share_secret}",
"TELA_API_KEY_SECRET=${api_key_secret}",
]

[[config.domains]]
serviceName = "proxy"
port = 80
host = "${main_domain}"
20 changes: 20 additions & 0 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -6094,6 +6094,26 @@
"nocode"
]
},
{
"id": "tela",
"name": "tela",
"version": "0.7.0",
"description": "Self-hostable, markdown-native team wiki with live collaboration, full-text and semantic search, WebDAV sync, public spaces, Slidev decks, PDF export, and a built-in MCP server so AI agents are first-class editors.",
"logo": "logo.png",
"links": {
"github": "https://github.com/zcag/tela",
"website": "https://telawiki.com",
"docs": "https://telawiki.com/public/spaces/16"
},
"tags": [
"wiki",
"documentation",
"knowledge-base",
"markdown",
"collaboration",
"ai"
]
},
{
"id": "tianji",
"name": "Tianji",
Expand Down
Loading