added apps!
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
# =============================================================================
|
||||
# .felhom.yml - App metadata for felhom-controller
|
||||
# =============================================================================
|
||||
|
||||
# --- Display info (shown on dashboard) ---
|
||||
display_name: "Uptime Kuma"
|
||||
description: "Szolgáltatás és weboldal monitoring"
|
||||
category: "dashboard"
|
||||
subdomain: "status"
|
||||
slug: "uptime-kuma"
|
||||
|
||||
# --- Resource hints (displayed on deploy screen) ---
|
||||
resources:
|
||||
mem_request: "50M"
|
||||
mem_limit: "256M"
|
||||
pi_compatible: true
|
||||
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
|
||||
|
||||
# --- App info (info page content) ---
|
||||
app_info:
|
||||
tagline: "Szolgáltatás monitoring - értesítés ha valami nem működik"
|
||||
docs_url: "https://github.com/louislam/uptime-kuma/wiki"
|
||||
|
||||
use_cases:
|
||||
- 'Weboldalak és szolgáltatások elérhetőségének figyelése'
|
||||
- 'HTTP, TCP, DNS, ping és egyéb protokollok támogatása'
|
||||
- 'Értesítések emailben, Telegramon, Discord-on, stb.'
|
||||
- 'Nyilvános státusz oldal a felhasználóknak'
|
||||
- 'Szép grafikonok a rendelkezésre állásról'
|
||||
|
||||
first_steps:
|
||||
- 'Nyisd meg a status.DOMAIN címet a böngészőben'
|
||||
- 'Hozd létre az admin fiókot az első megnyitáskor'
|
||||
- 'Add hozzá az első monitort (pl. a saját weboldalad)'
|
||||
- 'Állíts be értesítéseket (email, Telegram, stb.)'
|
||||
- 'Opcionálisan: hozz létre egy nyilvános státusz oldalt'
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
# Uptime Kuma - Szolgáltatás és weboldal monitoring
|
||||
# Domain: status.${DOMAIN}
|
||||
# Database: None (file-based)
|
||||
# RAM: ~50M (mem_limit: 256M) | Pi-compatible: Yes
|
||||
#
|
||||
# Environment variables:
|
||||
# DOMAIN - Your domain (e.g., demo-felhom.eu)
|
||||
|
||||
services:
|
||||
uptime-kuma:
|
||||
image: louislam/uptime-kuma:2
|
||||
container_name: uptime-kuma
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- TZ=Europe/Budapest
|
||||
volumes:
|
||||
- uptime_kuma_data:/app/data
|
||||
networks:
|
||||
- traefik-public
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
memory: 256M
|
||||
healthcheck:
|
||||
test: ["CMD", "node", "/app/extra/healthcheck.mjs"]
|
||||
interval: 30s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
start_period: 30s
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.uptime-kuma.rule=Host(`status.${DOMAIN}`)"
|
||||
- "traefik.http.routers.uptime-kuma.entrypoints=websecure"
|
||||
- "traefik.http.routers.uptime-kuma.tls=true"
|
||||
- "traefik.http.routers.uptime-kuma.tls.certresolver=letsencrypt"
|
||||
- "traefik.http.services.uptime-kuma.loadbalancer.server.port=3001"
|
||||
|
||||
volumes:
|
||||
uptime_kuma_data:
|
||||
|
||||
networks:
|
||||
traefik-public:
|
||||
external: true
|
||||
Reference in New Issue
Block a user