mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-21 11:47:01 -04:00
31 lines
691 B
YAML
31 lines
691 B
YAML
services:
|
|
gluetun:
|
|
image: qmcgaw/gluetun:latest
|
|
cap_add:
|
|
- NET_ADMIN
|
|
env_file: ./gluetun.env
|
|
ports:
|
|
- 3456:3456
|
|
- 6881:6881
|
|
- 6881:6881/udp
|
|
restart: always
|
|
devices:
|
|
- /dev/net/tun:/dev/net/tun
|
|
qbit:
|
|
image: lscr.io/linuxserver/qbittorrent:latest
|
|
container_name: qbittorrent
|
|
network_mode: "service:gluetun"
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1002
|
|
- TZ=America/New_York
|
|
- WEBUI_PORT=3456
|
|
- TORRENTING_PORT=6881
|
|
volumes:
|
|
- /storage/qbitConfig:/config
|
|
- /storage/downloads:/downloads
|
|
restart: unless-stopped
|
|
depends_on:
|
|
gluetun:
|
|
condition: service_healthy
|
|
|