-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
59 lines (55 loc) · 1.15 KB
/
docker-compose.yml
File metadata and controls
59 lines (55 loc) · 1.15 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
services:
transmission:
image: linuxserver/transmission:4.0.6
container_name: transmission-test
environment:
- PUID=1000
- PGID=1000
- USER=test
- PASS=test
ports:
- 9091:9091
- 51413:51413
- 51413:51413/udp
volumes:
- "data:/downloads"
qbittorrent:
image: linuxserver/qbittorrent:5.0.4
container_name: qbittorrent-test
environment:
- PUID=1000
- PGID=1000
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
volumes:
- "qbt-data:/downloads"
- "qbt-config:/config"
- "./docker/qbittorrent/custom-cont-init.d:/custom-cont-init.d:ro"
jackett:
image: linuxserver/jackett:latest
container_name: jackett-test
environment:
- PUID=1000
- PGID=1000
ports:
- 9117:9117
volumes:
- "jackett-config:/config"
prowlarr:
image: linuxserver/prowlarr:latest
container_name: prowlarr-test
environment:
- PUID=1000
- PGID=1000
ports:
- 9696:9696
volumes:
- "prowlarr-config:/config"
volumes:
data:
qbt-data:
qbt-config:
jackett-config:
prowlarr-config: