Seerr logo

Seerr

Open-source media request and discovery manager for Jellyfin, Plex, and Emby

Alternative to: netflix, trakt, justwatch

Seerr screenshot

Seerr is a free and open source application for managing requests for your media library, integrating with Jellyfin, Plex, or Emby along with services like Sonarr and Radarr. It gives users a Netflix-style interface to browse and request movies and shows, with approved requests automatically downloaded and added to the library. Seerr is the unified successor to Overseerr and Jellyseerr, merging both projects into one actively maintained app with support for all three media servers.

Seerr Docker Compose example

Self-host Seerr on your own server, homelab, or VPS starting from this Docker Compose example. It runs Seerr in Docker containers using the official seerr/seerr:latest image, with persistent volumes and automatic restarts preconfigured. Review the environment variables and adjust them to your setup, save the file as compose.yml (or docker-compose.yml), and start the stack with docker compose up -d.

services:
  seerr:
    image: seerr/seerr:latest
    restart: unless-stopped
    environment:
      # Server timezone
      TZ: "UTC"
      # Log verbosity: one of "debug", "info", "warn" or "error"
      LOG_LEVEL: "info"
      # Port the web UI listens on inside the container
      PORT: "5055"
    volumes:
      - config:/app/config

volumes:
  config:

Prefer a managed setup? WinterFlow installs, configures, and updates Seerr for you using this same Docker Compose configuration.