With Usharr, you can effortlessly maintain a streamlined movie library by removing unwanted movies based on your preferences and criteria. It integrates with your existing Radarr and Tautulli services and allows you to define specific rules for removing movies from your library.
With more features on the way! Check out the issues to see the features which have already been requested. Pull requests are also welcome!
:exclamation: Be sure to replace
/path/to/config
in the below examples with a valid host directory path. TheTZ
environment variable value should also be set to the TZ database name of your time zone.:grey_exclamation: After running Usharr for the first time, configure it by visiting the web UI at
http://[address]:5588
.
docker run -d \
-e TZ=America/New_York \
-p 5588:5588 \
-v /path/to/config:/config \
--restart unless-stopped \
nicholasodonnell/usharr:latest
version: '3'
services:
usharr:
image: nicholasodonnell/usharr:latest
container_name: usharr
environment:
- TZ=America/New_York
ports:
- 5588:5588
volumes:
- /path/to/config:/config
restart: unless-stopped
npm i
npm run db:generate
docker-compose up
docker-compose run --rm -it app npm run db:migrate