knowledge/technology/applications/web/Jellyfin.md

29 lines
608 B
Markdown
Raw Normal View History

2023-12-04 11:02:23 +01:00
---
obj: application
2023-12-09 05:42:36 +01:00
website: https://jellyfin.org
2023-12-04 11:02:23 +01:00
android-id: org.jellyfin.mobile
---
2024-03-19 09:25:42 +01:00
2023-12-04 11:02:23 +01:00
# Jellyfin
2023-12-09 05:42:36 +01:00
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.
2024-09-03 18:13:27 +02:00
![Screenshot](./jellyfin.webp)
2023-12-04 11:02:23 +01:00
## Docker Compose
```yaml
version: "3"
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin
environment:
- PUID=1001
- PGID=1001
- TZ=Europe/Berlin
volumes:
- ./config:/config
2023-12-09 05:42:36 +01:00
- /media:/media
2023-12-04 11:02:23 +01:00
ports:
- 8096:8096
restart: unless-stopped
2023-12-09 05:42:36 +01:00
```