Back

Setting up Jellyfin on Raspberry Pi

In this post I'll install jellyfin on a raspberry using docker.

Install Docker

if you don't have docker, please follow the docs

Install the Jellyfin Image

$ docker pull jellyfin/jellyfin

Create volumes

$ docker volume create jellyfin-config
$ docker volume create jellyfin-cache

Run

$ docker run -d \
 --name jellyfin \
 --volume jellyfin-config:/config \
 --volume jellyfin-cache:/cache \
 --mount type=bind,source=/path/to/media,target=/media \
 --restart=unless-stopped \
 -p 8096:8096
 jellyfin/jellyfin

once it works, you can open your browser and open

`$ http:0.0.0.0:8096`