Skip to content

Movie discovery tool that provides recommendations based on selected Radarr movies, using TMDB.

License

Notifications You must be signed in to change notification settings

TheWicklowWolf/RadaRec

Repository files navigation

Build Status Docker Pulls

image

Web GUI for finding similar movies to selected Radarr movies.

Run using docker-compose

services:
  radarec:
    image: thewicklowwolf/radarec:latest
    container_name: radarec
    volumes:
      - /path/to/config:/radarec/config
      - /etc/localtime:/etc/localtime:ro
    ports:
      - 5000:5000
    restart: unless-stopped

Configuration via environment variables

Certain values can be set via environment variables:

  • PUID: The user ID to run the app with. Defaults to 1000.
  • PGID: The group ID to run the app with. Defaults to 1000.
  • radarr_address: The URL for Radarr. Defaults to http://192.168.1.2:8686.
  • radarr_api_key: The API key for Radarr. Defaults to ``.
  • root_folder_path: The root folder path for Movies. Defaults to /data/media/movies/.
  • tmdb_api_key: The API key for TMDB. Defaults to ``.
  • fallback_to_top_result: Whether to use the top result if no match is found. Defaults to False.
  • radarr_api_timeout: Timeout duration for Radarr API calls. Defaults to 120.
  • quality_profile_id: Quality profile ID in Radarr. Defaults to 1.
  • metadata_profile_id: Metadata profile ID in Radarr. Defaults to 1
  • search_for_movie: Whether to start searching for movie when adding. Defaults to False
  • dry_run_adding_to_radarr: Whether to run without adding artists in Radarr. Defaults to False
  • minimum_rating: Minimum Movie Rating. Defaults to 5.5.
  • minimum_votes: Minimum Vote Count. Defaults to 50.
  • language_choice: Chosen Language in ISO-639 two letter format. Defaults to all.
  • auto_start: Whether to run automatically at startup. Defaults to False.
  • auto_start_delay: Delay duration for Auto Start in Seconds (if enabled). Defaults to 60.

image

image


https://hub.docker.com/r/thewicklowwolf/radarec