A modern client-server application for the Soulseek file sharing network.
Find a file
JP Dillingham 85d2b9a44f
Some checks failed
CI / Build and Test (push) Has been cancelled
CI / Publish (push) Has been cancelled
CI / Build Docker Image (push) Has been cancelled
CI / Create Release (push) Has been cancelled
Merge pull request #1449 from slskd/file-close
Tweak how file access is handled when validating config
2025-09-13 15:05:16 -05:00
.github/workflows bump action-gh-release to v2 2024-09-14 15:03:01 -05:00
bin add lint script 2024-10-26 19:57:32 -05:00
config Merge branch 'master' into migrations 2025-05-03 17:53:30 -05:00
docs fix(docs): add missing prefixes to env names 2025-08-14 04:08:54 +00:00
etc change favicon color 2022-03-16 23:31:35 -04:00
src tweak how file access is handled when validating config 2025-09-13 15:01:53 -05:00
tests leave some notes 2025-04-07 13:55:51 -05:00
.dockerignore tweak build stuff 2021-01-02 12:49:22 -06:00
.gitignore gitignore globa.json 2025-07-27 14:18:36 -05:00
CONTRIBUTING.md Bump gitignore, etc 2024-02-11 15:08:35 +01:00
Dockerfile bump the hard limit for the GC heap to 2 GiB 2025-06-07 17:52:34 -05:00
LICENSE Initial commit 2020-12-30 12:22:49 -06:00
README.md improve docs 2023-02-04 22:33:47 -06:00
slskd.sln docs 2022-04-23 13:24:40 -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

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 \
  slskd/slskd:latest

With Docker-Compose

---
version: "2"
services:
  slskd:
    image: slskd/slskd
    container_name: slskd
    ports:
      - "5030:5030"
      - "5031:5031"
      - "50300:50300"
    environment:
      - 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.