Files
nexus/wiki/entities/Transmission.md
2026-04-14 16:02:50 +08:00

39 lines
922 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "Transmission"
type: entity
tags: [transmission, bt, download, docker]
sources: [yong-docker-an-zhuang-transmission]
last_updated: 2026-04-14
---
## Definition
Transmission是开源BT下载客户端提供远程Web界面管理BT下载任务。
## 核心特性
- 开源BT下载客户端
- Web UI远程管理
- 支持认证USER/PASS环境变量
- 支持Peer端口配置TCP/UDP
## Docker部署配置
```yaml
services:
transmission:
image: lscr.io/linuxserver/transmission:latest
ports:
- "9091:9091" # Web UI
- "51413:51413" # Peer TCP
- "51413:51413/udp" # Peer UDP
environment:
- PUID=1000
- PGID=1000
- USER=shenwei
- PASS=zmkm99zmkm00
volumes:
- /home/shenwei/Docker/transmission/data:/config
- /home/shenwei/Downloads:/downloads
```
## Connections
- [[Docker]] ← 部署方式 ← [[Transmission]]