Seerr

Description

Seerr is a free, open-source request management and media discovery tool that works seamlessly with your Jellyfin, Plex, or Emby server.

Overview

Docker compose

---
services:
  seerr:
    image: ghcr.io/seerr-team/seerr:latest
    init: true
    container_name: seerr
    environment:
      - LOG_LEVEL=debug
      - TZ=Europe/Paris
      - PORT=5055 #optional
    user: "0:0"
    ports:
      - 5055:5055
    volumes:
      - ./data/config:/app/config
    healthcheck:
      test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/settings/public || exit 1
      start_period: 20s
      timeout: 3s
      interval: 15s
      retries: 3
    restart: unless-stopped