22 lines
671 B
YAML
22 lines
671 B
YAML
---
|
|
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
|
|
|