New matchDistance parameter

#76
pull/77/head
RandomNinjaAtk 2 years ago committed by GitHub
parent 91b01c6953
commit 8de6291b72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -121,6 +121,7 @@ Container images are configured using parameters passed at runtime (such as thos
| `-e youtubeSubtitleLanguage=en` | Desired Language Code :: For guidence, please see yt-dlp documentation. | `-e youtubeSubtitleLanguage=en` | Desired Language Code :: For guidence, please see yt-dlp documentation.
| `-e webHook=https://myhook.mydomain.com` | POST's to this URL on error events which prevent the script from working. Content is JSON `{"event":"eventtype", "message":"eventmessage", "content":"eventtype: eventmessage"}` | | `-e webHook=https://myhook.mydomain.com` | POST's to this URL on error events which prevent the script from working. Content is JSON `{"event":"eventtype", "message":"eventmessage", "content":"eventtype: eventmessage"}` |
| `-e enableQueueCleaner=true` | true = enabled :: Enables QueueCleaner Script that automatically removes stuck downloads that cannot be automatically imported on a 15 minute interval | | `-e enableQueueCleaner=true` | true = enabled :: Enables QueueCleaner Script that automatically removes stuck downloads that cannot be automatically imported on a 15 minute interval |
| `-e matchDistance=5` | The number of changes required to transform the searched album title into a possible found album title match... (0, requires a perfect match) |
## Usage ## Usage
@ -164,6 +165,7 @@ docker create \
-e plexToken=Token_Goes_Here \ -e plexToken=Token_Goes_Here \
-e youtubeSubtitleLanguage=en \ -e youtubeSubtitleLanguage=en \
-e enableQueueCleaner=true \ -e enableQueueCleaner=true \
-e matchDistance=5 \
--restart unless-stopped \ --restart unless-stopped \
randomninjaatk/lidarr-extended:latest randomninjaatk/lidarr-extended:latest
``` ```
@ -213,6 +215,7 @@ services:
- plexToken=Token_Goes_Here - plexToken=Token_Goes_Here
- youtubeSubtitleLanguage=en - youtubeSubtitleLanguage=en
- enableQueueCleaner=true - enableQueueCleaner=true
- matchDistance=5
ports: ports:
- 8686:8686 - 8686:8686
restart: unless-stopped restart: unless-stopped

Loading…
Cancel
Save