This commit is contained in:
2023-12-22 12:51:58 -07:00
commit 55e4e34cfb
19 changed files with 1119 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
---
version: '3'
services:
qbittorrent-nox:
image: qbittorrentofficial/qbittorrent-nox:latest
container_name: qbittorrent-nox
environment:
- QBT_EULA=true
- QBT_VERSION=latest
- QBT_WEBUI_PORT=6882
volumes:
- ./config:/config
# I like setting this to somewhere FileBrowser can see
- ./downloads:/downloads
restart: unless-stopped
# With network_mode set to host you can access VPN
# interfaces setup on your local (as in the machine running docker) machine.
# You could also pair this with a Wireguard container and do internal
# networking for potentially more security.
network_mode: host