-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (35 loc) · 821 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (35 loc) · 821 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
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent-testing
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- WEBUI_PORT=8080
- TORRENTING_PORT=6881
volumes:
- ./testing-torrent/config:/config
- ./testing-torrent/downloads:/downloads
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
networks:
- testing-net
restart: unless-stopped
reverse-proxy:
image: caddy:latest
container_name: caddy-proxy
networks:
- testing-net
ports:
- 9000:9000 # HTTP Port
- 9001:9001 # HTTPS Port
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
- ./testing-torrent/ssl:/data/caddy
restart: unless-stopped
networks:
testing-net:
driver: bridge