added apps!
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
# =============================================================================
|
||||
# .felhom.yml - App metadata for felhom-controller
|
||||
# =============================================================================
|
||||
|
||||
# --- Display info (shown on dashboard) ---
|
||||
display_name: "Plex"
|
||||
description: "Népszerű média szerver csiszolt felülettel"
|
||||
category: "media"
|
||||
subdomain: "plex"
|
||||
slug: "plex"
|
||||
|
||||
# --- Resource hints (displayed on deploy screen) ---
|
||||
resources:
|
||||
mem_request: "512M"
|
||||
mem_limit: "2048M"
|
||||
pi_compatible: false
|
||||
needs_hdd: true
|
||||
|
||||
# --- 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: PLEX_CLAIM
|
||||
label: "Plex Claim Token"
|
||||
type: text
|
||||
required: true
|
||||
placeholder: "claim-xxxxxxxxxxxx"
|
||||
description: "Generáld a https://plex.tv/claim oldalon (4 percig érvényes)"
|
||||
locked_after_deploy: true
|
||||
|
||||
- env_var: HDD_PATH
|
||||
label: "Médiatár útvonal"
|
||||
type: path
|
||||
required: true
|
||||
placeholder: "/mnt/hdd_1"
|
||||
description: "A külső merevlemez elérési útja"
|
||||
locked_after_deploy: true
|
||||
|
||||
# --- App info (info page content) ---
|
||||
app_info:
|
||||
tagline: "Prémium média szerver kiváló alkalmazás támogatással"
|
||||
docs_url: "https://support.plex.tv/"
|
||||
|
||||
use_cases:
|
||||
- 'Filmek, sorozatok és zene streamelése professzionális felületen'
|
||||
- 'Automatikus transzkódolás bármilyen eszközhöz'
|
||||
- 'Watch Together - közös filmnézés távolról'
|
||||
- 'Intro/outro skip funkció (Plex Pass)'
|
||||
- 'Gazdag mobilalkalmazás és Smart TV támogatás'
|
||||
|
||||
first_steps:
|
||||
- 'Generálj egy claim tokent a https://plex.tv/claim oldalon'
|
||||
- 'Telepítés után nyisd meg a plex.DOMAIN címet'
|
||||
- 'Kapcsold össze a Plex fiókoddat a szerverrel'
|
||||
- 'Add hozzá a médiatárat (filmek: /media/movies, sorozatok: /media/shows)'
|
||||
- 'Telepítsd a Plex alkalmazást eszközeidre'
|
||||
|
||||
prerequisites:
|
||||
- 'Plex fiók szükséges (ingyenes regisztráció a plex.tv-n)'
|
||||
- 'Külső HDD a médiafájlok tárolásához'
|
||||
- 'Legalább 2 GB szabad RAM (transzkódoláshoz több ajánlott)'
|
||||
@@ -0,0 +1,49 @@
|
||||
# Plex - Népszerű média szerver csiszolt felülettel
|
||||
# Domain: plex.${DOMAIN}
|
||||
# Database: None (file-based)
|
||||
# RAM: ~512M (mem_limit: 2048M) | Pi-compatible: No
|
||||
#
|
||||
# Environment variables:
|
||||
# DOMAIN - Your domain (e.g., demo-felhom.eu)
|
||||
# PLEX_CLAIM - Plex Claim Token
|
||||
# HDD_PATH - Médiatár útvonal
|
||||
|
||||
services:
|
||||
plex:
|
||||
image: plexinc/pms-docker:1.41.4.9463-630c9f557
|
||||
container_name: plex
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- TZ=Europe/Budapest
|
||||
- PLEX_CLAIM=${PLEX_CLAIM}
|
||||
volumes:
|
||||
- plex_config:/config
|
||||
- plex_transcode:/transcode
|
||||
- ${HDD_PATH}/media:/media:ro
|
||||
networks:
|
||||
- traefik-public
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
memory: 2048M
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:32400/identity"]
|
||||
interval: 30s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
start_period: 30s
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.plex.rule=Host(`plex.${DOMAIN}`)"
|
||||
- "traefik.http.routers.plex.entrypoints=websecure"
|
||||
- "traefik.http.routers.plex.tls=true"
|
||||
- "traefik.http.routers.plex.tls.certresolver=letsencrypt"
|
||||
- "traefik.http.services.plex.loadbalancer.server.port=32400"
|
||||
|
||||
volumes:
|
||||
plex_config:
|
||||
plex_transcode:
|
||||
|
||||
networks:
|
||||
traefik-public:
|
||||
external: true
|
||||
Reference in New Issue
Block a user