Skip to main content

Jellyfin

Introduction

Jellyfin is the volunteer-built media solution that puts you in control of your media. Stream to any device from your own server, with no strings attached. Your media, your server, your way.

Installation

With Docker)

# Pull the image
docker pull jellyfin/jellyfin

# Create the directories
mkdir config
mkdir cache
mkdir video

#Create the account
addgroup --system jellyfin
adduser --system --ingroup jellyfin jellyfin

# Run the container
docker run -d \
--name jellyfin \
--user jellyfin:jellyfin$(id -u jellyfin):$(id -g jellyfin) \
--net=host \
--volume $(pwd)/config:/config \
--volume $(pwd)/cache:/cache \
--mount type=bind,source=$(pwd)/video,target=/video \
--restart=unless-stopped \
jellyfin/jellyfin
Quick Start

http://SERVER_IP:8096