add gluetun-qbittorrent

master
meftimes 2023-11-05 09:53:29 -05:00
parent 44f8ee2628
commit a8d0b40797
2 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,2 @@
WIREGUARD_PRIVATE_KEY=private_key_goes_here_see_https://github.com/qdm12/gluetun-wiki/blob/main/setup/providers/mullvad.md
WIREGUARD_ADDRESSES=addresses_go_here

View File

@ -0,0 +1,47 @@
version: "2.1"
services:
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
cap_add:
- NET_ADMIN
ports:
- 8080:8080 # qbit
- 58261:58261 # qbit
- 58261:58261/udp # qbit
environment:
- VPN_SERVICE_PROVIDER=mullvad
- VPN_TYPE=wireguard
- SERVER_CITIES=Toronto
env_file:
- .env
restart: unless-stopped
networks:
- proxy
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1001
- PGID=1001
- TZ=America/New_York
volumes:
- /home/meftimes/docker/gluetun-qbittorrent/config:/config
- /home/meftimes/docker/gluetun-qbittorrent/downloads:/downloads
restart: unless-stopped
network_mode: service:gluetun
depends_on:
gluetun:
condition: service_healthy
labels:
- "traefik.enable=true"
- "traefik.http.routers.qbittorrent-websecure.entrypoints=websecure"
- "traefik.http.routers.qbittorrent-websecure.rule=Host(`qbittorrent.meftimes.com`)"
- "traefik.http.routers.qbittorrent-websecure.service=qbittorrent-websecure"
- "traefik.http.services.qbittorrent-websecure.loadbalancer.server.port=8080"
networks:
proxy:
external: true