I've been using OMV for about 5 years. Finally made the leap to v7 from v5 (skipped 6 entirely). Everything is working as intended except one thing: my qbittorrent container, which is fully functional and playing nice with all my *arr containers, will not save any config changes within the webgui. Hitting save does nothing. Nothing comes up in the container logs either. So I thought I have a permission issue; after spending some time trying to fix permissions with no results I ended up nuking the appdata folder and pulling the container again. I get same result, with a completely fresh container. This container has the same UID/GID as my *arr instances. I have temporarily set up transmission while I figure this out. It seems like all my other containers have no permission problems using the appdata mount point I have. Transmission seems to have no problems at all saving config options in the webgui . Here is my docker compose:
# Date: 2025-06-01
# https://hub.docker.com/r/linuxserver/qbittorrent
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=100
- TZ=Europe/Dublin
- WEBUI_PORT=8080
volumes:
- /srv/WDC-Array/appdata/qbittorrent:/config
- /srv/WDC-Array/Media/downloads/BT:/downloads
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
restart: unless-stopped
Display More