mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-06-27 05:05:24 +00:00
Merge branch 'master' of https://github.com/tborychowski/self-hosted-cookbook
* 'master' of https://github.com/tborychowski/self-hosted-cookbook: plex & jellyfin
This commit is contained in:
commit
1ae6758244
@ -202,14 +202,18 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
|
||||
- [Calibre](apps/media/calibre.md) - e-books
|
||||
- [Deemix](apps/media/deemix.md) - music
|
||||
- [Jackett](apps/media/jackett.md) - search engine proxy/adapter
|
||||
- [Jellyfin](apps/media/jellyfin.md) - watch movies & shows almost everywhere!
|
||||
- [Komga](apps/media/komga.md) - comics
|
||||
- [Navidrome](apps/media/navidrome.md) - music streaming server
|
||||
- [Plex](apps/media/plex.md) - watch movies & shows everywhere!
|
||||
- [Radarr](apps/media/radarr.md) - movies
|
||||
- [Readerr](apps/media/readerr.md) - ebooks & comics
|
||||
- [Sonarr](apps/media/sonarr.md) - tv shows
|
||||
- [Tautulli](apps/media/tautulli.md) - dashboard for Plex
|
||||
- [Ubooquity](http://vaemendis.net/ubooquity) 🔗 - another Ebook & Comics server. Didn't work properly.
|
||||
|
||||
|
||||
|
||||
### Apps for Youtube
|
||||
- [Invidious](apps/media/invidious.md) - Privacy-focused YT Proxy interface
|
||||
- [Metube](apps/media/metube.md) - youtube-dl webUI
|
||||
|
34
apps/media/jellyfin.md
Normal file
34
apps/media/jellyfin.md
Normal file
@ -0,0 +1,34 @@
|
||||
# Jellyfin
|
||||
Audio, Video & Photo manager.<br>
|
||||
|
||||
- Allows you to view all the media from your local server on almost any device, anywhere.
|
||||
|
||||
<br>
|
||||
|
||||
- [Homepage](https://jellyfin.org/)
|
||||
|
||||
okdocker run -d -v /srv/jellyfin/config:/config -v /srv/jellyfin/cache:/cache -v /media:/media --net=host jellyfin/jellyfin:latest
|
||||
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
---
|
||||
services:
|
||||
jellyfin:
|
||||
image: jellyfin/jellyfin:latest
|
||||
container_name: jellyfin
|
||||
network_mode: host
|
||||
# user: uid:gid
|
||||
restart: unless-stopped
|
||||
# Optional - alternative address used for autodiscovery
|
||||
# environment:
|
||||
# - JELLYFIN_PublishedServerUrl=http://example.com
|
||||
ports:
|
||||
- 8096:8096
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./cache:/cache
|
||||
- ./media:/media
|
||||
```
|
||||
|
||||
Server should be available at: `<serverIP>:8096`
|
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`
|
Loading…
Reference in New Issue
Block a user