Saltar al contenido
TutorialesServidores multimediaPrincipiante

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.

por HomeServersGuide Team1 min de lectura

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.

Artículos relacionados

TutorialesServidores multimediaIntermedio

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 de lectura
TutorialesServidores multimediaPrincipiante

Cómo montar un servidor multimedia Jellyfin

Instala Jellyfin con Docker y transmite tus películas, series y música gratis a todos tus dispositivos.

1 min de lectura
GuíasServidores multimediaIntermedio

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 de lectura