diff --git a/docker/IYUUAutoReseed自动辅种docker安装教程.md b/docker/IYUUAutoReseed自动辅种docker安装教程.md index 624b417..8aadb4a 100644 --- a/docker/IYUUAutoReseed自动辅种docker安装教程.md +++ b/docker/IYUUAutoReseed自动辅种docker安装教程.md @@ -20,4 +20,32 @@ ## 如何定时辅种? -把`iyuu.sh`加入Linux计划任务内。 \ No newline at end of file +把`iyuu.sh`加入Linux计划任务内。 + + + +## 小钢炮qBittorrent连接失败? + +v4.1.5无法连接,请安装灯大高版本的qbittorrent,做种列表不丢失且不用校验。 + +```sh +IMAGE_NAME=80x86/qbittorrent +WEB_PORT=8083 +DOWNLOAD_PATH=$(cat /var/lib/qbittorrent/.config/qBittorrent/qBittorrent.conf | grep -i 'Downloads\\SavePath' | cut -d'=' -f2) +BT_PORT=8999 +QBT_AUTH_SERVER_ADDR=$(ip -4 addr show docker0 | grep inet | awk '{print $2}' | cut -d'/' -f1) +docker run -d --name qbittorrent \ + -e PUID=$(id -u qbittorrent) \ + -e PGID=$(cat /etc/group | grep -e '^users' | cut -d':' -f3) \ + -e WEB_PORT=$WEB_PORT \ + -e BT_PORT=$BT_PORT \ + -e QBT_AUTH_SERVER_ADDR=$QBT_AUTH_SERVER_ADDR \ + --restart unless-stopped \ + -p $WEB_PORT:$WEB_PORT -p $BT_PORT:$BT_PORT/tcp -p $BT_PORT:$BT_PORT/udp \ + -v /var/lib/qbittorrent/.config/qBittorrent:/config \ + -v /var/lib/qbittorrent/.local/share/data/qBittorrent:/data \ + -v "$DOWNLOAD_PATH":/downloads \ + --mount type=tmpfs,destination=/tmp \ + ${IMAGE_NAME} +``` +