Jellyfin

Media Streaming Server

About

Jellyfin is my go to media streaming server. I've been using this for as long as I've been using the Music streaming server for. I have had close to no issues with this setup. If you have a spare GPU, it'll help with encoding. Other than that, it works perfectly fine for what it sets out to do!

(If your media were to exist on IMDB or TheMovieDB, jellyfin will automatically pull the data and fill in the blanks)

Docker-Compose

version: "3.5"
services:
  jellyfin:
    image: jellyfin/jellyfin
    container_name: jellyfin
    user: 0:0
    network_mode: "host"
    volumes:
      - /path/to/config:/config
      - /path/to/cache:/cache
      - /path/to/movies:/media
    restart: "unless-stopped"
    # Optional - alternative address used for autodiscovery
    #    environment:
    #  - JELLYFIN_PublishedServerUrl=http://example.com

Last updated