docker/gluetun-qbittorrent/gluetun-qbittorrent.yml

49 lines
1.3 KiB
YAML
Raw Normal View History

2023-11-05 14:53:29 +00:00
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:
2023-11-05 20:42:26 +00:00
- /media/qbittorrent/config:/config
- /media/qbittorrent/downloads:/downloads
2023-11-05 14:53:29 +00:00
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"
2023-11-05 20:47:23 +00:00
- "traefik.http.routers.qbittorrent.middlewares=authelia@docker"
2023-11-05 14:53:29 +00:00
- "traefik.http.services.qbittorrent-websecure.loadbalancer.server.port=8080"
networks:
proxy:
external: true