mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2026-01-18 07:11:41 +00:00
plex & jellyfin
This commit is contained in:
36
apps/media/plex.md
Normal file
36
apps/media/plex.md
Normal file
@@ -0,0 +1,36 @@
|
||||
# Plex
|
||||
Audio, Video & Photo manager.<br>
|
||||
|
||||
- Allows you to view all the media from your local server on any device, anywhere.
|
||||
- Allows you to add any other paid streaming service and search through them.
|
||||
- Requires Plex account for authentication.
|
||||
- Requires Plex subscription for some extra features.
|
||||
|
||||
<br>
|
||||
|
||||
- [Homepage](https://www.plex.tv/)
|
||||
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
---
|
||||
services:
|
||||
plex:
|
||||
image: ghcr.io/linuxserver/plex
|
||||
container_name: plex
|
||||
network_mode: host
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- VERSION=docker
|
||||
devices:
|
||||
- /dev/dri:/dev/dri
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./tvshows:/Shows
|
||||
- ./movies:/Movies
|
||||
- ./music:/Music
|
||||
```
|
||||
|
||||
Server should be available at: `<serverIP>:32400`
|
||||
Reference in New Issue
Block a user