A modern client-server application for the Soulseek file sharing network.
  • C# 88.6%
  • JavaScript 9.9%
  • CSS 0.9%
  • Dockerfile 0.3%
  • Shell 0.3%
Find a file
JP Dillingham 7961741f74
Some checks are pending
CI / Build and Test (push) Waiting to run
CI / Publish (push) Blocked by required conditions
CI / Publish-1 (push) Blocked by required conditions
CI / Publish-2 (push) Blocked by required conditions
CI / Publish-3 (push) Blocked by required conditions
CI / Publish-4 (push) Blocked by required conditions
CI / Publish-5 (push) Blocked by required conditions
CI / Publish-6 (push) Blocked by required conditions
CI / Publish-7 (push) Blocked by required conditions
CI / Publish-8 (push) Blocked by required conditions
CI / Publish-9 (push) Blocked by required conditions
CI / Build Docker Image (push) Blocked by required conditions
CI / Create Release (push) Blocked by required conditions
CI / Create Release-1 (push) Blocked by required conditions
CI / Create Release-2 (push) Blocked by required conditions
CI / Create Release-3 (push) Blocked by required conditions
CI / Create Release-4 (push) Blocked by required conditions
CI / Create Release-5 (push) Blocked by required conditions
CI / Create Release-6 (push) Blocked by required conditions
CI / Create Release-7 (push) Blocked by required conditions
CI / Create Release-8 (push) Blocked by required conditions
CI / Create Release-9 (push) Blocked by required conditions
Mirror Repository / mirror (map[host:codeberg.org name:Codeberg repo:git@codeberg.org:slskd/slskd.git]) (push) Waiting to run
Mirror Repository / mirror (map[host:gitlab.com name:GitLab repo:git@gitlab.com:slskd/slskd.git]) (push) Waiting to run
Merge pull request #1711 from slskd/config-diff
Fix bug preventing configuration changes from being applied
2026-04-19 20:53:56 -05:00
.github use .net 10 in actions 2026-04-07 10:13:26 -05:00
bin remove integration tests in build script 2026-04-07 10:25:51 -05:00
config
docs update docker 2026-04-18 23:42:16 -05:00
etc
src check for nulls first 2026-04-19 18:50:28 -05:00
tests/slskd.Tests.Unit add tests for DiffWith 2026-04-19 18:54:26 -05:00
.dockerignore
.gitignore
CODE_OF_CONDUCT.md
CONTRIBUTING.md Specify current maintainer in contribution agreement 2026-04-19 00:27:04 -05:00
Dockerfile add case for legacy docker behavior 2026-04-19 10:51:23 -05:00
FORKING.md add FORKING.md 2026-03-29 15:22:30 -05:00
LICENSE
NOTICE adjust indent in NOTICE 2026-04-03 18:00:10 -05:00
README.md update quick start with user details 2026-04-18 23:13:39 -05:00
SECURITY.md
slskd.sln remove straggling reference to integration test project 2026-04-09 22:52:52 -05:00

slskd

Build Docker Pulls GitHub all releases Contributors Discord Matrix

A modern client-server application for the Soulseek file-sharing network.

Features

Secure access

slskd runs as a daemon or Docker container in your network (or in the cloud!) and is accessible from a web browser. It's designed to be exposed to the internet, and everything is secured with a token that you can control. It also supports reverse proxies, making it work well with other self-hosted tools.

image

Search for things just like you're used to with the official Soulseek client. slskd makes it easy to enter multiple searches quickly.

image

Results

Sort and filter search results using the same filters you use today. Dismiss results you're not interested in, and download the ones you want in a couple of clicks.

image

Downloads

Monitor the speed and status of downloads, grouped by user and folder. Click the progress bar to fetch your place in queue, and use the selection tools to cancel, retry, or clear completed downloads. Use the controls at the top to quickly manage downloads by status.

image

Pretty much everything else

slskd can do almost everything the official Soulseek client can; browse user shares, join chat rooms, privately chat with other users.

New features are added all the time!

Quick Start

With Docker

Choose Docker's built-in method of specifying a user for the container:

docker run -d \
  -p 5030:5030 \
  -p 5031:5031 \
  -p 50300:50300 \
  -e SLSKD_REMOTE_CONFIGURATION=true \
  -v <path/to/application/data>:/app \
  --name slskd \
  --user 1000:1000 \
  slskd/slskd:latest

Or use the Linuxserver/*arr PUID/PGID method:

docker run -d \
  -p 5030:5030 \
  -p 5031:5031 \
  -p 50300:50300 \
  -e PUID=1000 \
  -e PGID=1000 \
  -e SLSKD_REMOTE_CONFIGURATION=true \
  -v <path/to/application/data>:/app \
  --name slskd \
  slskd/slskd:latest

With Docker-Compose

Choose Docker's built-in method of specifying a user for the container:

services:
  slskd:
    image: slskd/slskd
    container_name: slskd
    user: "1000:1000"
    ports:
      - "5030:5030"
      - "5031:5031"
      - "50300:50300"
    environment:
      - SLSKD_REMOTE_CONFIGURATION=true
    volumes:
      - <path/to/application/data>:/app
    restart: always

Or use the Linuxserver/*arr PUID/PGID method:

services:
  slskd:
    image: slskd/slskd
    container_name: slskd
    ports:
      - "5030:5030"
      - "5031:5031"
      - "50300:50300"
    environment:
      - PUID=1000
      - PGID=1000
      - SLSKD_REMOTE_CONFIGURATION=true
    volumes:
      - <path/to/application/data>:/app
    restart: always

This command or docker-compose file (depending on your choice) starts a container instance of slskd on ports 5030 (HTTP) and 5031 (HTTPS using a self-signed certificate). slskd begins listening for incoming connections on port 50300 and maps the application directory to the provided path.

Once the container is running you can access the web UI over HTTP on port 5030, or HTTPS on port 5031. The default username and password are slskd and slskd, respectively. You'll want to change these if the application will be internet facing.

The SLSKD_REMOTE_CONFIGURATION environment variable allows you to modify application configuration settings from the web UI. You might not want to enable this for an internet-facing installation.

You can find a more in-depth guide to running slskd in Docker here.

With Binaries

The latest stable binaries can be downloaded from the releases page. Platform-specific binaries and the static content for the Web UI are produced as artifacts from every build if you'd prefer to use a canary release.

Binaries are shipped as zip files; extract the zip to your chosen directory and run.

An application directory will be created in either ~/.local/share/slskd (on Linux and macOS) or %localappdata%/slskd (on Windows). In the root of this directory the file slskd.yml will be created the first time the application runs. Edit this file to enter your credentials for the Soulseek network, and tweak any additional settings using the configuration guide.

Configuration

Once running, log in to the web UI using the default username slskd and password slskd to complete the configuration.

Detailed documentation for configuration options can be found here, and an example of the YAML configuration file can be reviewed here.

Reverse Proxy

SLSKD may require extra configuration when running it behind a reverse proxy. Refer here for a short guide.