Skip to content

Jellyfin

Open-source media server alternative to Plex. Completely free with no subscription requirements.

Docker Compose Example

jellyfin:
  image: lscr.io/linuxserver/jellyfin:latest
  container_name: media-jellyfin
  ports:
    - 8096:8096
  environment:
    - PUID=1000
    - PGID=1000
    - TZ=Europe/London
  volumes:
    - jellyfin_data:/config
    - /path/to/movies:/data/movies
    - /path/to/tv:/data/tvshows
    - /path/to/audiobooks:/data/audiobooks  # Optional: audiobook support
  restart: unless-stopped