Add FlareSolver

This commit is contained in:
Tanguy Herbron 2021-06-24 15:14:49 +02:00
parent 08ff527a05
commit bcb6335a48
2 changed files with 18 additions and 0 deletions

View File

@ -9,6 +9,7 @@ Set of services to search through, sort and download torrents. Everything can be
| Sonarr |host:8989| TV shows searcher | | Sonarr |host:8989| TV shows searcher |
| Jackett |host:9117| Torrent indexer | | Jackett |host:9117| Torrent indexer |
| Deluge |host:8112| Torrent client | | Deluge |host:8112| Torrent client |
| FlareSolver |host:8191| Cloudflare resolver |
## Requirements ## Requirements
Do deploy this instance, you only need to install `docker-compose` and `docker`. Do deploy this instance, you only need to install `docker-compose` and `docker`.
@ -25,3 +26,7 @@ All necessary images should be downloaded automatically and the service should b
## Wireguard configuration ## Wireguard configuration
The stack needs a wireguard connection by default, please follow the offical wireguard configuration to connect to your desired server. The stack needs a wireguard connection by default, please follow the offical wireguard configuration to connect to your desired server.
## FlareSolver configuration
Following the recent Cloudflare challenge update, an additinal service is necessary to access some torrent trackers.
To enable this challenge solving, add `http://localhost:8191` in the `FlareSolver` text input of Jackett's UI.

View File

@ -22,6 +22,7 @@ services:
- 8989:8989 # Sonarr - 8989:8989 # Sonarr
- 9117:9117 # Jacket - 9117:9117 # Jacket
- 8112:8112 # Deluge - 8112:8112 # Deluge
- 8191:8191 # FlareSolverr
sysctls: sysctls:
- net.ipv4.conf.all.src_valid_mark=1 - net.ipv4.conf.all.src_valid_mark=1
- net.ipv6.conf.all.disable_ipv6=0 - net.ipv6.conf.all.disable_ipv6=0
@ -96,3 +97,15 @@ services:
depends_on: depends_on:
- wireguard_torr - wireguard_torr
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolver
environment:
- LOG_LEVEL=info
- LOG_HTML=false
- CAPTCHA_SOLVER=none
- TZ=Europe/Copenhagen
restart: unless-stopped
network_mode: service:wireguard_torr
depends_on:
- wireguard_torr