added apps!
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
# =============================================================================
|
||||
# .felhom.yml - App metadata for felhom-controller
|
||||
# =============================================================================
|
||||
|
||||
# --- Display info (shown on dashboard) ---
|
||||
display_name: "OnlyOffice"
|
||||
description: "Teljes értékű irodai csomag a böngészőben"
|
||||
category: "productivity"
|
||||
subdomain: "office"
|
||||
slug: "onlyoffice"
|
||||
|
||||
# --- Resource hints (displayed on deploy screen) ---
|
||||
resources:
|
||||
mem_request: "512M"
|
||||
mem_limit: "2048M"
|
||||
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: JWT_SECRET
|
||||
label: "JWT titkosítási kulcs"
|
||||
type: secret
|
||||
generate: "hex:32"
|
||||
locked_after_deploy: true
|
||||
|
||||
# --- App info (info page content) ---
|
||||
app_info:
|
||||
tagline: "Teljes értékű irodai csomag - Word, Excel, PowerPoint a böngészőben"
|
||||
docs_url: "https://helpcenter.onlyoffice.com/"
|
||||
|
||||
use_cases:
|
||||
- 'Dokumentumok, táblázatok és prezentációk szerkesztése böngészőben'
|
||||
- 'Valós idejű közös szerkesztés több felhasználóval'
|
||||
- 'Microsoft Office formátumok teljes kompatibilitása (docx, xlsx, pptx)'
|
||||
- 'Nextcloud és egyéb felhő tárhely integrációk'
|
||||
- 'PDF konvertálás és kitöltés'
|
||||
|
||||
first_steps:
|
||||
- 'Nyisd meg az office.DOMAIN címet a böngészőben'
|
||||
- 'Várj amíg az inicializálás befejeződik (1-2 perc)'
|
||||
- 'A Document Server önmagában API-ként működik'
|
||||
- 'Integráld Nextcloud-dal vagy más alkalmazással a JWT tokennel'
|
||||
- 'Nextcloudban: telepítsd az OnlyOffice alkalmazást és add meg az URL-t'
|
||||
|
||||
prerequisites:
|
||||
- 'Legalább 2 GB szabad RAM szükséges'
|
||||
- 'x86 processzor szükséges (nem fut Raspberry Pi-n)'
|
||||
- 'Nextcloud vagy más kompatibilis alkalmazás ajánlott az integrációhoz'
|
||||
@@ -0,0 +1,47 @@
|
||||
# OnlyOffice - Teljes értékű irodai csomag a böngészőben
|
||||
# Domain: office.${DOMAIN}
|
||||
# Database: None (file-based)
|
||||
# RAM: ~512M (mem_limit: 2048M) | Pi-compatible: No
|
||||
#
|
||||
# Environment variables:
|
||||
# DOMAIN - Your domain (e.g., demo-felhom.eu)
|
||||
# JWT_SECRET - JWT titkosítási kulcs (auto-generated)
|
||||
|
||||
services:
|
||||
onlyoffice:
|
||||
image: onlyoffice/documentserver:8.3.0
|
||||
container_name: onlyoffice
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- TZ=Europe/Budapest
|
||||
- JWT_SECRET=${JWT_SECRET}
|
||||
volumes:
|
||||
- onlyoffice_data:/var/www/onlyoffice/Data
|
||||
- onlyoffice_logs:/var/log/onlyoffice
|
||||
networks:
|
||||
- traefik-public
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
memory: 2048M
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:80/healthcheck"]
|
||||
interval: 30s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
start_period: 30s
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.onlyoffice.rule=Host(`office.${DOMAIN}`)"
|
||||
- "traefik.http.routers.onlyoffice.entrypoints=websecure"
|
||||
- "traefik.http.routers.onlyoffice.tls=true"
|
||||
- "traefik.http.routers.onlyoffice.tls.certresolver=letsencrypt"
|
||||
- "traefik.http.services.onlyoffice.loadbalancer.server.port=80"
|
||||
|
||||
volumes:
|
||||
onlyoffice_data:
|
||||
onlyoffice_logs:
|
||||
|
||||
networks:
|
||||
traefik-public:
|
||||
external: true
|
||||
Reference in New Issue
Block a user