* Fix reachable and IP leak test (#44)
* Fix reachable check
Fixes failing reachable checks when Basic Authentication is enabled in
Sonarr, Radarr, etc.
* Add option to disable IP leak test
* Revert "Fix reachable and IP leak test (#44)" (#46)
This reverts commit 3f5d7bbef3.
* Release 0.6.1 (#48)
* Fix typo
* Fix typos
* Fix typos
* Fix typo
* Clarify error message
* Fix reachable and ipleak test (#47)
* Fix reachable check
Fixes failing reachable checks when Basic Authentication is enabled in
Sonarr, Radarr, etc.
* Add option to disable IP leak test
---------
Co-authored-by: Jonas F <github@pcjones.de>
* Add IpLeakTest environment variable to docker compose
---------
Co-authored-by: akuntsch <github@akuntsch.de>
* Create Dockerfile.arm64
---------
Co-authored-by: akuntsch <github@akuntsch.de>
36 lines
1.4 KiB
YAML
36 lines
1.4 KiB
YAML
version: '3.8'
|
|
services:
|
|
umlautadaptarr:
|
|
#uncomment this to get the development branch
|
|
#build: https://github.com/PCJones/UmlautAdaptarr.git#develop
|
|
build: https://github.com/PCJones/UmlautAdaptarr.git#master
|
|
image: umlautadaptarr
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5005:5005" # can be removed if you use the recommended prowlarr+proxy configuration
|
|
- "5006:5006" # can be removed if you use the alternative, non-proxy configuration
|
|
environment:
|
|
- TZ=Europe/Berlin
|
|
- SONARR__ENABLED=false
|
|
- SONARR__HOST=http://localhost:8989
|
|
- SONARR__APIKEY=APIKEY
|
|
- RADARR__ENABLED=false
|
|
- RADARR__HOST=http://localhost:7878
|
|
- RADARR__APIKEY=APIKEY
|
|
- READARR__ENABLED=false
|
|
- READARR__HOST=http://localhost:8787
|
|
- READARR__APIKEY=APIKEY
|
|
- LIDARR__ENABLED=false
|
|
- LIDARR__HOST=http://localhost:8686
|
|
- LIDARR__APIKEY=APIKEY
|
|
#- IpLeakTest__Enabled=false # uncomment and set to true to enable IP leak test
|
|
### example for multiple instances of same type
|
|
#- SONARR__0__NAME=NAME 1 (optional)
|
|
#- SONARR__0__ENABLED=false
|
|
#- SONARR__0__HOST=http://localhost:8989
|
|
#- SONARR__0__APIKEY=APIKEY
|
|
#- SONARR__1__NAME=NAME 2 (optional)
|
|
#- SONARR__1__ENABLED=false
|
|
#- SONARR__1__HOST=http://localhost:8989
|
|
#- SONARR__1__APIKEY=APIKEY
|