> For AI agents: the complete documentation index is available at https://www.tteam.icu/llms.txt, the full documentation bundle is available at https://www.tteam.icu/llms-full.txt.

# xunlei

这是从群晖平台提取的迅雷下载套件，可以在其他 Linux 机器上部署为迅雷远程下载服务。

[开源地址](https://github.com/cnk3x/xunlei)

## 快速启动

```sh file="./xunlei/docker-compose.yml" title="docker-compose.yml"
version: "3.9"

services:
  xunlei:
    container_name: xunlei
    network_mode: host
    volumes:
      - ./xunlei:/xunlei/data
      - ./downloads:/xunlei/downloads
    environment:
      - XL_DASHBOARD_PORT=8345
      - XL_BA_USER=<user>
      - XL_BA_PASSWORD=<password>
    restart: unless-stopped
    privileged: true
    image: registry.cn-shenzhen.aliyuncs.com/cnk3x/xunlei:latest
```

:::tip
下载类服务建议单独挂载数据目录，并提前设置磁盘空间告警，避免任务积压导致磁盘写满。
:::
