init
This commit is contained in:
commit
c5cd492449
475 changed files with 27928 additions and 0 deletions
28
technology/applications/web/Jellyfin.md
Normal file
28
technology/applications/web/Jellyfin.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
---
|
||||
obj: application
|
||||
os: web
|
||||
website: https://jellyfin.org/
|
||||
android-id: org.jellyfin.mobile
|
||||
---
|
||||
# Jellyfin
|
||||
#refactor
|
||||
Jellyfin is a free and open-source multimedia application suite designed to organize, manage, and share digital media files to networked devices.
|
||||
Multiple clients can be used.
|
||||
|
||||
## Docker Compose
|
||||
```yaml
|
||||
version: "3"
|
||||
services:
|
||||
jellyfin:
|
||||
image: lscr.io/linuxserver/jellyfin
|
||||
environment:
|
||||
- PUID=1001
|
||||
- PGID=1001
|
||||
- TZ=Europe/Berlin
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./media:/media:ro
|
||||
ports:
|
||||
- 8096:8096
|
||||
restart: unless-stopped
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue