28 lines
598 B
Markdown
28 lines
598 B
Markdown
|
---
|
||
|
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
|
||
|
```
|