customized transmission with TrguiNG as default webui
4.5K
torrent-recheck-verify-mode setting, which make users can use fast verify while rechecking torrenttorrent-added-verify-mode and torrent-recheck-verify-mode lively without a restart of transmissionRPCPORT to modify rpc-port elegantly, e.g. when multiple transmission docker run on one host, user can specify RPCPORT and PEERPORT to avoid port conflictiontorrent-recheck-verify-mode,可以指定在重新校验种子时,使用快速模式进行校验(快速模式使用transmission 4.0.x新增的快速校验实现)torrent-added-verify-mode和torrent-recheck-verify-mode这两个选项,两者默认均为fasttorrent-added-verify-mode和torrent-recheck-verify-mode的勾选框,具体在下载设置的最下方version: "3.8"
services:
transmission:
container_name: transmission
image: jq50n/transmission:4.0.6-r7
restart: unless-stopped
network_mode: host
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Shanghai
- USER=username
- PASS=password
- RPCPORT=9099
- PEERPORT=51413
volumes:
- ./config:/config
- ./downloads:/downloads
- ./watch:/watch
docker run -d \
--name=transmission \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Asia/Shanghai \
-e USER=username `#optional` \
-e PASS=password `#optional` \
-e WHITELIST=iplist `#optional` \
-e RPCPORT=rpcport `#optional` \
-e PEERPORT=peerport `#optional` \
-e HOST_WHITELIST=dnsnane list `#optional` \
-p 9091:9091 \
-p 51413:51413 \
-p 51413:51413/udp \
-v <path to data>:/config \
-v <path to downloads>:/downloads \
-v <path to watch folder>:/watch \
--restart unless-stopped \
jq50n/transmission
You can check for details:
Thanks to:
Content type
Image
Digest
sha256:d73ced818…
Size
31.9 MB
Last updated
about 2 years ago
docker pull jq50n/transmission