https://github.com/mariotacke/radarr-ombi-sync
Remove available movies from your Radarr watch list
https://github.com/mariotacke/radarr-ombi-sync
api nodejs ombi radarr sync
Last synced: 3 months ago
JSON representation
Remove available movies from your Radarr watch list
- Host: GitHub
- URL: https://github.com/mariotacke/radarr-ombi-sync
- Owner: mariotacke
- License: mit
- Created: 2019-05-18T21:20:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T03:58:37.000Z (over 2 years ago)
- Last Synced: 2025-06-07T20:07:47.762Z (4 months ago)
- Topics: api, nodejs, ombi, radarr, sync
- Language: JavaScript
- Size: 157 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# radarr-ombi-sync
If you find yourself wanting to automatically remove monitored movies from [Radarr](https://github.com/Radarr/Radarr) after they become available, this tool is for you. Once [Ombi](https://github.com/tidusjar/Ombi) marks the movie as available, this service will remove it from the Radarr watch list.## When should I use this service?
If you have your entire library in Radarr, this tool is not for you. A common use-case is to use Radarr only for its monitoring functionality. Once a movie becomes available, you may want to remove it from the monitored list. If this use-case applies to you, this service is for you.## Running
### Local
When running locally, make sure to copy `.env.example` to `.env` and fill in
your information.```
npm install
npm start
```### Docker
```
docker run \
--name radarr-ombi-sync \
-e OMBI_HOST=http://ombi:3579 \
-e OMBI_API_KEY=ombi-token \
-e RADARR_HOST=http://radarr:7878 \
-e RADARR_API_KEY=radarr-token \
mariotacke/radarr-ombi-sync
```or via `docker-compose`
```
version: '3'
services:
radarr-ombi-sync:
image: mariotacke/radarr-ombi-sync
restart: unless-stopped
environment:
- OMBI_HOST=http://ombi:3579
- OMBI_API_KEY=ombi-token
- RADARR_HOST=http://radarr:7878
- RADARR_API_KEY=radarr-token
```## Environment variables
Running locally or via Docker supports the following environment variables:
- `OMBI_HOST`, your Ombi host and port, example: `http://ombi:3579`
- `OMBI_API_KEY`, your Ombi API key
- `RADARR_HOST`, your Radarr host and port, example: `http://radarr:7878`
- `RADARR_API_KEY`, your Radarr API key
- `POLLING_INTERVAL_SECONDS`, optional, the number of seconds between each sync## Requirements
- [Node.js](https://nodejs.org/)
- [Docker](https://www.docker.com/)
- [Ombi](https://github.com/tidusjar/Ombi)
- [Radarr](https://github.com/Radarr/Radarr)