init
This commit is contained in:
commit
c5cd492449
475 changed files with 27928 additions and 0 deletions
29
technology/applications/web/Plex.md
Normal file
29
technology/applications/web/Plex.md
Normal 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
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue