2024-08-26 07:13:14 -04:00
|
|
|
---
|
|
|
|
services:
|
|
|
|
qbittorrent:
|
|
|
|
image: linuxserver/qbittorrent:latest
|
|
|
|
container_name: qbittorrent
|
|
|
|
environment:
|
|
|
|
- PUID=1000
|
|
|
|
- PGID=1000
|
|
|
|
- TZ=Etc/UTC
|
|
|
|
- WEBUI_PORT=8080
|
|
|
|
- TORRENTING_PORT=6881
|
|
|
|
volumes:
|
|
|
|
- ./config:/config
|
|
|
|
- /mnt/disk1/downloads:/downloads #optional
|
|
|
|
ports:
|
|
|
|
- 4009:8080
|
|
|
|
- 6881:6881
|
|
|
|
- 6881:6881/udp
|
|
|
|
restart: always
|
2024-08-29 01:39:41 +08:00
|
|
|
extra_hosts:
|
|
|
|
- "host.docker.internal:host-gateway"
|