6 Commits

Author SHA1 Message Date
d8ca6c53e2 chore(release): 1.2.0 2024-01-26 19:07:08 +01:00
eded032243 feat: Add FlareSolverr docker 2024-01-26 19:06:58 +01:00
b7f45adf15 chore(release): 1.1.0 2024-01-26 13:50:54 +01:00
d7397e00b0 feat: Pull new images on running the role. 2024-01-26 13:50:50 +01:00
e0ab8fc777 chore(release): 1.0.1 2022-12-12 20:13:25 +01:00
3eb5fde403 chore: Add funding. 2022-12-12 20:13:08 +01:00
6 changed files with 46 additions and 0 deletions

2
.github/FUNDING.yml vendored Normal file
View File

@@ -0,0 +1,2 @@
github: equinoxel
patreon: laurivan

19
CHANGELOG.md Normal file
View File

@@ -0,0 +1,19 @@
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
## [1.2.0](https://git.laurivan.com/Dev/ansible-role-arrs/compare/v1.1.0...v1.2.0) (2024-01-26)
### Features
* Add FlareSolverr docker ([eded032](https://git.laurivan.com/Dev/ansible-role-arrs/commit/eded03224311a2cdc8c68dd2655d1bd42674faad))
## [1.1.0](https://git.laurivan.com/Dev/ansible-role-arrs/compare/v1.0.1...v1.1.0) (2024-01-26)
### Features
* Pull new images on running the role. ([d7397e0](https://git.laurivan.com/Dev/ansible-role-arrs/commit/d7397e00b016cab0a154ef00b4573ab7637ccd4d))
### 1.0.1 (2022-12-12)

View File

@@ -66,3 +66,10 @@ jackett_image_version: 'latest'
jackett_auto_update: true
jackett_host_port: 9117
jackett_config_volume: '{{ arrs_configuration_volume }}/jackett'
# FlareSolverr
flaresolverr_log_level: info
flaresolverr_log_html: "false"
flaresolverr_captcha_solver: none
flaresolverr_timezone: 'Europe/Brussels'
flaresolverr_host_port: 8191

View File

@@ -57,6 +57,7 @@
- "env.sonarr.conf"
- "env.lidarr.conf"
- "env.jackett.conf"
- "env.flaresolverr.conf"
tags:
- configuration
@@ -64,4 +65,5 @@
community.docker.docker_compose:
project_src: "{{ arrs_setup_path }}"
build: false
pull: true
become: false

View File

@@ -84,7 +84,19 @@ services:
- {{ jackett_host_port }}:9117
networks:
- arrs
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolverr
env_file:
- "{{ arrs_setup_path }}/env.flaresolverr.conf"
ports:
- "{{ flaresolverr_host_port }}:8191"
restart: unless-stopped
networks:
- arrs
{% endif %}
networks:
arrs: {}

View File

@@ -0,0 +1,4 @@
LOG_LEVEL={{ flaresolverr_log_level }}
LOG_HTML={{ flaresolverr_log_html }}
CAPTCHA_SOLVER={{ flaresolverr_captcha_solver }}
TZ={{ flaresolverr_timezone }}