diff --git a/images/docker-qbittorrent.md b/images/docker-qbittorrent.md index de730080c..c99938da7 100644 --- a/images/docker-qbittorrent.md +++ b/images/docker-qbittorrent.md @@ -43,6 +43,7 @@ docker create \ -p 6881:6881/udp \ -p 8080:8080 \ -v :/config \ + -v :/downloads \ --restart unless-stopped \ linuxserver/qbittorrent ``` @@ -67,6 +68,7 @@ services: - WEBUI_PORT=8080 volumes: - :/config + - :/downloads ports: - 6881:6881 - 6881:6881/udp @@ -102,6 +104,7 @@ Docker images are configured using parameters passed at runtime (such as those a | Volume | Function | | :----: | --- | | `/config` | Contains all relevant configuration files. | +| `/downloads` | Location of downloads on disk. |