binhex-soularr

binhex-soularr

Docker app from Binhex's Repository

Overview

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.

Application

Soularr

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

PayPal donation

Documentation | Support forum

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.

Open the Apps tab on your Unraid server Search Community Apps for binhex-soularr Review the template variables and paths Click Install

Categories

Download Statistics

1,582
Total Downloads

Related apps

Explore more like this

Explore all

Details

Repository
ghcr.io/binhex/arch-soularr
Last Updated2026-01-15
First Seen2026-01-14

Runtime arguments

Network
bridge
Shell
bash
Privileged
false
Extra Params
--restart=unless-stopped

Template configuration

Path: /configPathrw

This is the container path to your configuration files, e.g. databases, configuration files, logs etc.

Target
/config
Default
/mnt/user/appdata/soularr
Path: /dataPathrw

This is the container path to your downloaded files or user created content.

Target
/data
Variable: SCRIPT_INTERVALVariable

The interval in seconds between script runs after process exits (default 300 seconds / 5 minutes).

Target
SCRIPT_INTERVAL
Default
300
Variable: LIDARR_API_KEYVariable

API key for Lidarr instance.

Target
LIDARR_API_KEY
Variable: LIDARR_HOST_URLVariable

URL to Lidarr instance.

Target
LIDARR_HOST_URL
Default
http://lidarr:8686
Variable: LIDARR_DOWNLOAD_DIRVariable

Download directory for Lidarr.

Target
LIDARR_DOWNLOAD_DIR
Default
/data/lidarr_downloads
Variable: LIDARR_DISABLE_SYNCVariable

Disable syncing with Lidarr (True/False).

Target
LIDARR_DISABLE_SYNC
Default
False|True
Variable: SLSKD_API_KEYVariable

API key for Slskd instance.

Target
SLSKD_API_KEY
Variable: SLSKD_HOST_URLVariable

URL to Slskd instance.

Target
SLSKD_HOST_URL
Default
http://slskd:5030
Variable: SLSKD_URL_BASEVariable

URL base path for Slskd.

Target
SLSKD_URL_BASE
Default
/
Variable: SLSKD_DOWNLOAD_DIRVariable

Download directory for Slskd.

Target
SLSKD_DOWNLOAD_DIR
Default
/data/slskd_downloads
Variable: SLSKD_DELETE_SEARCHESVariable

Delete searches after completion (True/False).

Target
SLSKD_DELETE_SEARCHES
Default
False|True
Variable: SLSKD_STALLED_TIMEOUTVariable

Timeout in seconds for stalled downloads.

Target
SLSKD_STALLED_TIMEOUT
Default
3600
Variable: ENABLE_HEALTHCHECKVariable

Enable or disable healthchecks.

Target
ENABLE_HEALTHCHECK
Default
yes|no
Variable: HEALTHCHECK_COMMANDVariable

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
Variable: HEALTHCHECK_ACTIONVariable

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
Variable: HEALTHCHECK_HOSTNAMEVariable

The hostname used when performing HTTPS and DNS healthchecking.

Target
HEALTHCHECK_HOSTNAME
Default
google.com
Variable: PUIDVariable

User ID for the running container

Target
PUID
Default
99
Variable: PGIDVariable

Group ID for the running container

Target
PGID
Default
100
Variable: UMASKVariable

UMASK for the running container

Target
UMASK
Default
000