DockerPrograms/qBittorrent/compose.yml

33 lines
767 B
YAML
Raw Normal View History

2023-12-22 19:51:58 +00:00
services:
2024-01-02 01:04:32 +00:00
qbittorrent:
2023-12-22 19:51:58 +00:00
image: qbittorrentofficial/qbittorrent-nox:latest
container_name: qbittorrent-nox
2024-01-02 01:04:32 +00:00
restart: unless-stopped
2023-12-22 19:51:58 +00:00
environment:
- QBT_WEBUI_PORT=6882
2024-01-02 01:04:32 +00:00
- QBT_VERSION=latest
- QBT_EULA=true
2023-12-22 19:51:58 +00:00
volumes:
2024-01-02 01:04:32 +00:00
- ./qbit-config:/config
2024-08-14 05:41:06 +00:00
- ${ZFS_POOL}/downloads:/downloads
2024-01-02 01:04:32 +00:00
depends_on:
- vpn
2024-08-14 05:41:06 +00:00
ports:
- 6882:6882
2024-01-02 01:04:32 +00:00
vpn:
image: lscr.io/linuxserver/wireguard:latest
container_name: wireguard
2023-12-22 19:51:58 +00:00
restart: unless-stopped
2024-01-02 01:04:32 +00:00
cap_add:
- NET_ADMIN
environment:
2024-08-14 05:41:06 +00:00
- PUID=${UID}
- PGID=${GID}
2024-01-02 01:04:32 +00:00
- TZ=America/Denver
- SERVERPORT=51820 #optional
- LOG_CONFS=true #optional
volumes:
- ./config:/config
2024-08-14 05:41:06 +00:00
sysctls:
- net.ipv4.conf.all.src_valid_mark=1