-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (36 loc) · 871 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (36 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
services:
cloudflare-warp-proxy:
image: 'ariadata/cloudflare-warp-proxy:latest'
restart: unless-stopped
#ports:
# - '40001:40001' # SOCKS5 Proxy
# - '40002:40002' # HTTP Proxy
networks:
- torrent-network
qbittorrent:
image: lscr.io/linuxserver/qbittorrent
restart: unless-stopped
user: "${UID:-1000}:${GID:-1000}"
depends_on:
- cloudflare-warp-proxy
ports:
- "${DC_WEBUI_PORT:-8085}:8080"
environment:
- PUID=${UID:-1000}
- PGID=${GID:-1000}
- UMASK=022
- WEBUI_PORT=8080
- TZ=${TZ:-Europe/Istanbul}
volumes:
- ./configs/qbittorrent:/config
- ./downloads:/downloads
networks:
- torrent-network
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
networks:
torrent-network:
driver: bridge