New parameters "enableAudioScript" and "enableVideoScript"

pull/35/head
RandomNinjaAtk 2 years ago committed by GitHub
parent 71e23de259
commit a036bacd7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -95,6 +95,8 @@ Container images are configured using parameters passed at runtime (such as thos
| `-e PGID=1000` | for GroupID - see below for explanation |
| `-e autoStart=true` | true = enabled :: Runs script automatically on startup |
| `-e scriptInterval=15m` | #s or #m or #h or #d :: s = seconds, m = minutes, h = hours, d = days :: Amount of time between each script run, when autoStart is enabled |
| `-e enableAudioScript=true` | true = enabled :: Enables the Audio script to run with autoStart |
| `-e enableVideoScript=true` | true = enabled :: Enables the Video script to run with autoStart |
| `-e configureLidarrWithOptimalSettings=true` | true = enabled :: Automatically configures Lidarr with optimal settings |
| `-e searchSort=date` | date or ablum :: Sorts the missing/cutoff list by release date (newest -> oldest) or album type (album -> single) for processing the list |
| `-e audioFormat=native` | native or alac or mp3 or aac or opus :: native is the native download client file type, selected by the matching audio bitrate |
@ -135,6 +137,8 @@ docker create \
-e PUID=1000 \
-e PGID=1000 \
-e autoStart=true \
-e enableAudioScript=true \
-e enableVideoScript=true \
-e scriptInterval=15m \
-e configureLidarrWithOptimalSettings=true \
-e searchSort=date \
@ -182,6 +186,8 @@ services:
- PUID=1000
- PGID=1000
- autoStart=true
- enableAudioScript=true
- enableVideoScript=true
- scriptInterval=15m
- configureLidarrWithOptimalSettings=true
- searchSort=date

Loading…
Cancel
Save