Files
mates-infra/docker-services/plex/README.md
T
mates 444191d16d feat: initial infra repo
- docker-services: 14 generic compose templates (portainer, npm, vaultwarden, gitea, jotty, nextcloud-aio, rustdesk, audiobookshelf, calibre-web, plex, erugo, jswiki, speedtest, watchtower)
- install-scripts: bash scripts for Ubuntu server bootstrap, docker, portainer, npm, backup, restore
- ansible: 4 playbooks (bootstrap, deploy-services, update-services, security-hardening) + roles skeleton
- hermes-install: Hermes CLI setup on macOS
- macos-setup: Brewfile + osx-defaults + fish-config
- home-nas-tools: metadata index for NAS projects (no binaries)
- docs: architecture, security, contributing
- README, LICENSE (MIT), .gitignore
2026-08-01 16:25:58 +02:00

59 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Plex media server
> Stream filmů, seriálů, hudby, fotek. HW transkódování.
## 📋 Přehled
- **Image:** `linuxserver/plex:latest`
- **Porty:** `32400` (web), `1900` (DLNA), `5353` (Bonjour), `8324` (plex.tv)
- **User:** `1000:1000`
- **Network:** `host` (doporučeno) kvůli HW transkódování
## 🚀 Instalace
```bash
cp .env.example .env
docker compose up -d
```
Pak `http://<server>:32400/web` setup wizard.
## 🎯 Funkce
- **Hardware transkódování** Intel/AMD/NVIDIA GPU akcelerace
- **Plex Pass** Live TV, DVR, HW encoding (placené)
- **Mobile app** iOS/Android/Apple TV
- **Plex.tv** vzdálený přístup
- **Share** s přáteli
## 📁 Volumes
| Mount | Účel |
|---|---|
| `./data:/config` | Plex konfigurace, DB |
| `./media:/media` | Tvoje knihovna (filmy, seriály, hudba) |
## 🔧 HW transkódování
V `.env` nastavit:
- `NVIDIA_VISIBLE_DEVICES=all` pro NVIDIA
- `INTEL_VISIBLE_DEVICES=true` pro Intel QuickSync
## 🔐 Bezpečnost
- **HTTPS** terminuj v NPM
- **Plex.tv účet** nepoužívej guest účet
- **Network discovery** vypni pokud nepotřebuješ
## 🔄 Aktualizace
```bash
docker compose pull
docker compose up -d
```
## 📚 Dokumentace
- [Plex Support](https://support.plex.tv/)
- [Plex Media Server](https://www.plex.tv/media-server-downloads/)