A lightweight Dockerized script that automatically deletes movies from your Radarr library that have not been watched for a specified period.
- Automatic Deletion: Configurable time frame for deleting unwatched movies.
- Dockerized: Easy to deploy and run in any environment with Docker.
- Environment Variables: Easily configure your Radarr instance and API key.
- Docker installed on your machine.
version: '3.8'
services:
radarrcleansweep:
container_name: radarrcleansweep
image: ghcr.io/myrenic/radarrcleansweep:latest
restart: unless-stopped
environment:
- RADARR_URL=http://radarr:7878
- RADARR_API_KEY=
- DAYS=30
depends_on:
- radarr