All apps · 0 apps
binhex-soularr
Docker app from Binhex's Repository
Overview
Readme
View on GitHubApplication
Description
Soularr is a Python application that automates music downloads from Soulseek for Lidarr. It monitors Lidarr for wanted albums and searches Soulseek to download them, providing seamless integration between your music collection manager and the Soulseek network.
Build notes
Latest commit to branch main for Soularr.
Usage
docker run -d \
--name=<container name> \
-v <path for data files>:/data \
-v <path for config files>:/config \
-v /etc/localtime:/etc/localtime:ro \
-e LIDARR_API_KEY=<lidarr api key> \
-e LIDARR_HOST_URL=<lidarr host url> \
-e LIDARR_DOWNLOAD_DIR=<lidarr download directory> \
-e LIDARR_DISABLE_SYNC=<disable sync true/false> \
-e SLSKD_API_KEY=<slskd api key> \
-e SLSKD_HOST_URL=<slskd host url> \
-e SLSKD_URL_BASE=<slskd url base> \
-e SLSKD_DOWNLOAD_DIR=<slskd download directory> \
-e SLSKD_DELETE_SEARCHES=<delete searches true/false> \
-e SLSKD_STALLED_TIMEOUT=<stalled timeout in seconds> \
-e SCRIPT_INTERVAL=<script interval in seconds> \
-e HEALTHCHECK_COMMAND=<command> \
-e HEALTHCHECK_ACTION=<action> \
-e HEALTHCHECK_HOSTNAME=<hostname> \
-e UMASK=<umask for created files> \
-e PUID=<uid for user> \
-e PGID=<gid for user> \
binhex/arch-soularr
Please replace all user variables in the above command defined by <> with the correct values.
Access application
Console only
Example
docker run -d \
--name=soularr \
-v /root/docker/data:/data \
-v /apps/docker/soularr:/config \
-v /etc/localtime:/etc/localtime:ro \
-e LIDARR_API_KEY=yourlidarrapikey \
-e LIDARR_HOST_URL=http://lidarr:8686 \
-e LIDARR_DOWNLOAD_DIR=/data/lidarr_downloads \
-e LIDARR_DISABLE_SYNC=False \
-e SLSKD_API_KEY=yourslskdapikey \
-e SLSKD_HOST_URL=http://slskd:5030 \
-e SLSKD_URL_BASE=/ \
-e SLSKD_DOWNLOAD_DIR=/data/slskd_downloads \
-e SLSKD_DELETE_SEARCHES=False \
-e SLSKD_STALLED_TIMEOUT=3600 \
-e SCRIPT_INTERVAL=300 \
-e UMASK=000 \
-e PUID=0 \
-e PGID=0 \
binhex/arch-soularr
Notes
User ID (PUID) and Group ID (PGID) can be found by issuing the following command for the user you want to run the container as:-
id <username>
If you appreciate my work, then please consider buying me a beer :D
Install binhex-soularr on Unraid in a few clicks.
Find binhex-soularr in Community Apps on your Unraid server, review the template, and click Install. Unraid handles the Docker app or plugin setup from the published template.
Categories
Download Statistics
Related apps
Explore more like this
Explore allDetails
ghcr.io/binhex/arch-soularrRuntime arguments
- Network
bridge- Shell
bash- Privileged
- false
- Extra Params
--restart=unless-stopped
Template configuration
This is the container path to your configuration files, e.g. databases, configuration files, logs etc.
- Target
- /config
- Default
- /mnt/user/appdata/soularr
This is the container path to your downloaded files or user created content.
- Target
- /data
The interval in seconds between script runs after process exits (default 300 seconds / 5 minutes).
- Target
- SCRIPT_INTERVAL
- Default
- 300
API key for Lidarr instance.
- Target
- LIDARR_API_KEY
URL to Lidarr instance.
- Target
- LIDARR_HOST_URL
- Default
- http://lidarr:8686
Download directory for Lidarr.
- Target
- LIDARR_DOWNLOAD_DIR
- Default
- /data/lidarr_downloads
Disable syncing with Lidarr (True/False).
- Target
- LIDARR_DISABLE_SYNC
- Default
- False|True
API key for Slskd instance.
- Target
- SLSKD_API_KEY
URL to Slskd instance.
- Target
- SLSKD_HOST_URL
- Default
- http://slskd:5030
URL base path for Slskd.
- Target
- SLSKD_URL_BASE
- Default
- /
Download directory for Slskd.
- Target
- SLSKD_DOWNLOAD_DIR
- Default
- /data/slskd_downloads
Delete searches after completion (True/False).
- Target
- SLSKD_DELETE_SEARCHES
- Default
- False|True
Timeout in seconds for stalled downloads.
- Target
- SLSKD_STALLED_TIMEOUT
- Default
- 3600
Enable or disable healthchecks.
- Target
- ENABLE_HEALTHCHECK
- Default
- yes|no
The command or script to execute, if not specified then the script healthcheck.sh will be used (process, dns and https checking).
- Target
- HEALTHCHECK_COMMAND
The action to execute if the healthcheck command returns a non zero exit code, if not specified the action will be 'exit 1', if you want the container to exit on failure then set the action to 'kill 1'.
- Target
- HEALTHCHECK_ACTION
The hostname used when performing HTTPS and DNS healthchecking.
- Target
- HEALTHCHECK_HOSTNAME
- Default
- google.com
User ID for the running container
- Target
- PUID
- Default
- 99
Group ID for the running container
- Target
- PGID
- Default
- 100
UMASK for the running container
- Target
- UMASK
- Default
- 000
