Skip to content
TutorialsMedia ServersBeginner

How to Set Up Jellyseerr for Media Requests

Give your household a clean way to request movies and shows that flow automatically into your Jellyfin or Plex library.

by HomeServersGuide Team1 min read

What you'll build

Jellyseerr is a request portal for your media server. Family members browse for a movie or show, click request, and — when paired with Sonarr and Radarr — it's downloaded, organized, and added to Jellyfin or Plex automatically. No more manual requests over text message.

Prerequisites

Docker Compose file

services:
  jellyseerr:
    image: fallenbagel/jellyseerr:latest
    container_name: jellyseerr
    environment:
      - TZ=Europe/Paris
    ports:
      - "5055:5055"
    volumes:
      - ./config:/app/config
    restart: unless-stopped

Bring it up:

docker compose up -d

Initial configuration

  1. Open http://your-server-ip:5055.
  2. Sign in with your Jellyfin/Plex account to link it.
  3. Import your users so they can log in and make requests.
  4. Under Settings → Services, connect Sonarr and Radarr with their URL and API key.
  5. Set quality profiles and the root folder each app should use.

Approvals and permissions

Decide whether requests are auto-approved or need your sign-off. For a family, auto-approving trusted users while keeping quotas is a good balance — you avoid being a bottleneck without letting the library explode.

Put it behind a reverse proxy

Rather than exposing port 5055, publish Jellyseerr through a reverse proxy with HTTPS so users get a clean, secure URL. Never expose it directly to the internet without authentication.

Done

Your household now has a self-service media catalog. Combined with the arr stack, requested titles appear in your library automatically, usually within minutes.

Related articles

TutorialsMedia ServersIntermediate

How to Install Immich Photo Backup

Replace Google Photos with self-hosted Immich — automatic mobile backup, ML-powered search, and a plan for storage and backups.

3 min read
TutorialsMedia ServersBeginner

How to Set Up a Jellyfin Media Server

Install Jellyfin with Docker and stream your movies, TV and music to every device for free.

1 min read
GuidesMedia ServersIntermediate

The *arr Stack: Automate Your Media Library

How Sonarr, Radarr, Prowlarr and a download client work together to build a hands-off media server.

2 min read