Qbittorrent 4.6.3下载无法保存到其他文件夹

qbittorrent 下载无法保存到其他文件夹,下载到映射目录下的子文件夹也一样。目录权限也是给予全部控制权限。目前可以下载但是在其文件夹内无法找到文件。只有下载到downloads目录是正常的。这是我的配置文件

services:
qbittorrent:
image: linuxserver/qbittorrent:latest
container_name: qbittorrent
network_mode: host
environment:
- PUID=0
- PGID=0
- TZ=Asia/shanghaI
- WEBUI_PORT=8080
- TORRENTING_PORT=6881
volumes:
- /volume1/docker/qbittorrent/config:/config
- /volume2/video/download:/downloads
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
restart: unless-stopped

a couple issues here

  1. I dont know what the issue is as I cannot read the language you’ve posted in
  2. we do not support a PUID/PGID of 0
  3. we do not support running qbittorrent in host mode
1 Like

The qbittorrent download cannot be saved to other folders, and the download to the subfolder under the mapping directory is the same. Directory permissions are also given full control permissions. At present, it can be downloaded, but the file cannot be found in its folder. It is normal only to download to the downloads directory. This is my profile.
services:
qbittorrent:
image: linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1026
- PGID=101
- TZ=Asia/shanghaI
- WEBUI_PORT=8080
- TORRENTING_PORT=6881
volumes:
- /volume1/docker/qbittorrent/config:/config
- /volume2/video/download:/downloads
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
restart: unless-stopped

you can consider your QB docker as a standalone machine.

From your configuration, you only attach an external disk and mount it as downloads.

For QB, it doesn’t know anything outside that folder.

If you want to save file to other folders, mount them as well.

———-

And about access problem, you are running QB as first user (PUID=1026, PGID=101 usually the is user id for real user, not system internal user ), make sure this user account has access to the download folder and subfolders.

Please double check what is behind PUID=1026 and it’s access to the download path.