added apps!

This commit is contained in:
2026-02-15 08:47:15 +01:00
parent 95bc16309e
commit 0bd3f2a0e2
96 changed files with 4867 additions and 82 deletions
+66
View File
@@ -0,0 +1,66 @@
# =============================================================================
# .felhom.yml - App metadata for felhom-controller
# =============================================================================
# --- Display info (shown on dashboard) ---
display_name: "Outline"
description: "Modern csapat tudásbázis Markdown támogatással"
category: "productivity"
subdomain: "kb"
slug: "outline"
# --- Resource hints (displayed on deploy screen) ---
resources:
mem_request: "200M"
mem_limit: "768M"
pi_compatible: false
needs_hdd: false
# --- Deploy fields (first deployment only) ---
deploy_fields:
- env_var: DOMAIN
label: "Domain"
type: domain
description: "A szerver domain neve"
locked_after_deploy: true
- env_var: SECRET_KEY
label: "Titkosítási kulcs"
type: secret
generate: "hex:32"
locked_after_deploy: true
- env_var: UTILS_SECRET
label: "Segédprogram kulcs"
type: secret
generate: "hex:32"
locked_after_deploy: true
- env_var: DB_PASSWORD
label: "Adatbázis jelszó"
type: secret
generate: "password:24"
locked_after_deploy: true
# --- App info (info page content) ---
app_info:
tagline: "Modern tudásbázis - Markdown, valós idejű együttműködés, keresés"
docs_url: "https://docs.getoutline.com/"
use_cases:
- 'Csapat tudásbázis és dokumentáció'
- 'Markdown szerkesztő valós idejű együttműködéssel'
- 'Strukturált dokumentumok fa-szerkezetben'
- 'Teljes szöveges keresés és hivatkozások'
- 'API és integrációk (Slack, webhookok)'
first_steps:
- 'Nyisd meg a kb.DOMAIN címet a böngészőben'
- 'Hozd létre az első felhasználót'
- 'Hozz létre egy gyűjteményt (Collection) a dokumentumoknak'
- 'Kezdj el írni Markdown-ban'
- 'Hívd meg a csapattagokat'
prerequisites:
- 'x86 processzor szükséges'
- 'Legalább 1 GB szabad RAM (Outline + PostgreSQL + Redis)'
+108
View File
@@ -0,0 +1,108 @@
# Outline - Modern csapat tudásbázis Markdown támogatással
# Domain: kb.${DOMAIN}
# Database: postgres
# RAM: ~200M (mem_limit: 768M) | Pi-compatible: No
#
# Environment variables:
# DOMAIN - Your domain (e.g., demo-felhom.eu)
# SECRET_KEY - Titkosítási kulcs (auto-generated)
# UTILS_SECRET - Segédprogram kulcs (auto-generated)
# DB_PASSWORD - Adatbázis jelszó (auto-generated)
services:
outline:
image: outlinewiki/outline:0.82.0
container_name: outline
restart: unless-stopped
depends_on:
outline-postgres:
condition: service_healthy
outline-redis:
condition: service_healthy
environment:
- NODE_ENV=production
- SECRET_KEY=${SECRET_KEY}
- UTILS_SECRET=${UTILS_SECRET}
- DATABASE_URL=postgres://outline:${DB_PASSWORD}@outline-postgres:5432/outline
- REDIS_URL=redis://outline-redis:6379
- URL=https://kb.${DOMAIN}
- PORT=3000
- FILE_STORAGE=local
- FILE_STORAGE_LOCAL_ROOT_DIR=/var/lib/outline/data
volumes:
- outline_data:/var/lib/outline/data
networks:
- traefik-public
- outline-internal
deploy:
resources:
limits:
memory: 768M
healthcheck:
test: ["CMD", "node", "-e", "const http = require('http'); http.get('http://localhost:3000/_health', (r) => { process.exit(r.statusCode === 200 ? 0 : 1) }).on('error', () => process.exit(1))"]
interval: 30s
timeout: 5s
retries: 3
start_period: 30s
labels:
- "traefik.enable=true"
- "traefik.http.routers.outline.rule=Host(`kb.${DOMAIN}`)"
- "traefik.http.routers.outline.entrypoints=websecure"
- "traefik.http.routers.outline.tls=true"
- "traefik.http.routers.outline.tls.certresolver=letsencrypt"
- "traefik.http.services.outline.loadbalancer.server.port=3000"
outline-postgres:
image: postgres:16-alpine
container_name: outline-postgres
restart: unless-stopped
environment:
- POSTGRES_USER=outline
- POSTGRES_PASSWORD=${DB_PASSWORD}
- POSTGRES_DB=outline
- TZ=Europe/Budapest
volumes:
- outline_postgres_data:/var/lib/postgresql/data
networks:
- outline-internal
deploy:
resources:
limits:
memory: 256M
healthcheck:
test: ["CMD-SHELL", "pg_isready -U outline -d outline"]
interval: 10s
timeout: 5s
retries: 5
start_period: 20s
outline-redis:
image: redis:7-alpine
container_name: outline-redis
restart: unless-stopped
environment:
- TZ=Europe/Budapest
volumes:
- outline_redis_data:/data
networks:
- outline-internal
deploy:
resources:
limits:
memory: 128M
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5
start_period: 20s
volumes:
outline_data:
outline_postgres_data:
outline_redis_data:
networks:
traefik-public:
external: true
outline-internal: