Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iam4x/bobarr
🍿 The all-in-one alternative for Sonarr, Radarr, Jackett... with a VPN and running in docker
https://github.com/iam4x/bobarr
docker docker-compose flaresolverr graphql jackett movies nextjs plex radarr sonarr tmdb torrent torrent-downloader torrent-tracker tvshow typescript vpn wireguard
Last synced: 2 days ago
JSON representation
🍿 The all-in-one alternative for Sonarr, Radarr, Jackett... with a VPN and running in docker
- Host: GitHub
- URL: https://github.com/iam4x/bobarr
- Owner: iam4x
- License: mit
- Created: 2020-04-05T21:29:24.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-27T23:51:59.000Z (12 months ago)
- Last Synced: 2025-01-12T01:02:18.843Z (9 days ago)
- Topics: docker, docker-compose, flaresolverr, graphql, jackett, movies, nextjs, plex, radarr, sonarr, tmdb, torrent, torrent-downloader, torrent-tracker, tvshow, typescript, vpn, wireguard
- Language: TypeScript
- Homepage:
- Size: 3.1 MB
- Stars: 1,556
- Watchers: 25
- Forks: 86
- Open Issues: 85
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-pt - Bobarr
README
# 🍿 Bobarr
> The all-in-one alternative for Sonarr, Radarr, Jackett... with a VPN and running in dockerBobarr is a movies and tv shows collection manager for BitTorrent users. It uses [themoviedb.org](https://www.themoviedb.org/) to search movies and tv shows to add to your library. Then it searches into your favorites torrent trackers the best match and downloads it for you through a VPN.
![Screenshot](./screenshot.png)
**This is a beta release!**
### Need help? Join the discord => https://discord.gg/PFwM4zk
## Why ?
One of the main idea for bobarr is to be simple to setup, simple to use and having everything at the same place.
You don't have to choose a torrent client, to setup a VPN, to setup radarr, sonarr, then jackett and connect them all together.It's also built from scratch and it will try to solve long term problem like download multiple qualities and keep them or managing tv shows and movies at the same place.
You can follow the [roadmap](https://github.com/iam4x/bobarr/projects/1) to check what next features are implemented.And to have something with a better UI, less configuration and faster 🚀
## Setup
### Requirement
* [docker](https://get.docker.com/) installed with [docker-compose](https://docs.docker.com/compose/install/).
## Installation
Run the installation script and follow the instructions:
* `curl -o- https://raw.githubusercontent.com/iam4x/bobarr/master/scripts/install.sh | bash`### Configuration
* Update your config in `.env`
### Link your existing library if any (from Sonarr or Raddar)
* Open `docker-compose.yml` and look for `- ./library:/usr/library`
* Update `./library` to the folder where your (`/movies` & `/tvshows`) areAs example, having:
```
/mnt/storage/
|- movies/
|- tvshows/
```
The line should be: `- /mnt/storage:/usr/library`## How to start
There are two way to start bobarr stack, first without VPN:
* `$ ./bobarr.sh start`
* Go to http://localhost:9117, add your preferred torrent websites and copy the API Key in top right corner
* Go to http://localhost:3000/settings and update the jackett API keyIf you want to enforce all torrent traffic through a VPN:
#### OpenVPN
* Copy your open vpn config file (.ovpn) into the folder `packages/vpn` name it `vpn.conf`
* `$ ./bobarr.sh start:vpn`#### WireGuard
* Copy your wireguard config file (wg0.conf) into the folder `packages/vpn`
* `$ ./bobarr.sh start:wireguard`## Configuration
### Torrent account
* Go to http://localhost:9117
* Add indexer and follow the steps
* Also set [FlareSolverr](https://github.com/Jackett/Jackett#configuring-flaresolverr) url to `http://flaresolverr:8191` in jackett configuration### Bobarr configuration
* Go to http://localhost:3000/settings
* Set your region and language according to your torrent tracker
* Create and order your preferred tags found in torrent file (ex: vost, multi, english...)
* Order your preferred qualities to download## Usage
* After configuration, go to http://localhost:3000/search and just start searching!
* The files will be downloaded into `library/downloads`
* The files will be moved/copied/simlinked (you can set this in settings) and organized into `library/tvshows` or `library/movies`The only requirement is to have a folder `tvshows` and a folder `movies` then bobarr can catch up and download to your user defined library folder.
If your movies or tvshow folder have a different name, you can edit `.env` file with your folder names:
```
LIBRARY_MOVIES_FOLDER_NAME=movies
LIBRARY_TV_SHOWS_FOLDER_NAME=tvshows
```You can now head to http://localhost:3000 and hit that "Scan library folder" button.
## How to stop
You can stop the whole bobarr stack with:
* `$ ./bobarr.sh stop`
## How to update
Check the [CHANGELOG](https://github.com/iam4x/bobarr/blob/master/CHANGELOG.md) and update your `.env` if needed with new variables added.
* `$ ./bobarr.sh update`
* `$ ./bobarr.sh start`## Services
* Bobarr http://localhost:3000
* Bobarr GraphQL API http://localhost:4000/graphql
* Bobarr background jobs http://localhost:4000/jobs
* Jackett http://localhost:9117
* Transmission http://localhost:9091
* FlareSolverr http://localhost:8191## Development
Clone the repository and then you can run bobarr API and Web UI in dev watch mode and display logs with:
* `$ yarn dev`