Radarr-Schedularr
I wanted to automate adding and removing themed movies, eg Christmas movies added in late November and removed early Jan.
This app is hosted on Latte as a docker container
https://github.com/trentnbauer/agg/blob/main/docker-compose/radarr-schedularr.yml
services:
christmas:
image: ghcr.io/trentnbauer/radarr-schedularr:0.1.42
restart: unless-stopped
environment:
- RADARR_URL=${RADARRURL:-http://localhost:7878}
- RADARR_API_KEY=${APIKEY}
- LIST_NAME=Christmas
- TZ=${TZ:-Australia/Melbourne}
- START_DATE=01/11 #29th of November
- END_DATE=01/01 #1st of January
labels:
- autoheal=true
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
halloween:
image: ghcr.io/trentnbauer/radarr-schedularr:0.1.42
restart: unless-stopped
environment:
- RADARR_URL=${RADARRURL:-http://localhost:7878}
- RADARR_API_KEY=${APIKEY}
- LIST_NAME=Halloween
- TZ=${TZ:-Australia/Melbourne}
- START_DATE=01/09
- END_DATE=01/11
labels:
- autoheal=true
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
Last updated
Was this helpful?