This commit is contained in:
JMARyA 2023-12-04 11:02:23 +01:00
commit c5cd492449
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
475 changed files with 27928 additions and 0 deletions

View file

@ -0,0 +1,29 @@
---
obj: application
os: web
website: https://plex.tv
android-id: com.plexapp.android
flatpak-id: tv.plex.PlexDesktop
---
# Plex
Plex is a media player system and software suite consisting of many player applications for 10-foot user interfaces and an associated media server that organizes personal media stored on local devices.
Media inside Plex can be requested and managed by [Overseerr](Overseerr.md)
## Docker Compose
```yaml
version: '3'
services:
plex_server:
image: linuxserver/plex
restart: unless-stopped
ports:
- 32400:32400/tcp
environment:
- PUID=1001
- PGID=1001
- VERSION=docker
- TZ=Europe/Berlin
volumes:
- ./config:/config
- ./media:/media:ro
```