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

```bash

$ docker pull jellyfin/jellyfin

```

Create volumes

```bash

$ docker volume create jellyfin-config

$ docker volume create jellyfin-cache

```

Run

```bash

$ 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`