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:
- __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
.
https://hub.docker.com/r/thewicklowwolf/radarec