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,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
```