2023-12-04 10:02:23 +00:00
---
obj: application
2023-12-09 04:42:36 +00:00
website: https://jellyfin.org
2023-12-04 10:02:23 +00:00
android-id: org.jellyfin.mobile
---
2024-03-19 08:25:42 +00:00
2023-12-04 10:02:23 +00:00
# Jellyfin
2023-12-09 04:42:36 +00: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 16:13:27 +00:00
![Screenshot ](./jellyfin.webp )
2023-12-04 10:02:23 +00: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 04:42:36 +00:00
- /media:/media
2023-12-04 10:02:23 +00:00
ports:
- 8096:8096
restart: unless-stopped
2023-12-09 04:42:36 +00:00
```