-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
156 lines (137 loc) · 3.22 KB
/
docker-compose.yaml
File metadata and controls
156 lines (137 loc) · 3.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
version: "3.8"
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
user: "1000:1000"
restart: unless-stopped
ports:
- "8096:8096"
volumes:
- ./jellyfin/config:/config
- ./jellyfin/cache:/cache
- /home/ubuntu/media/movies:/media/movies
- /home/ubuntu/media/tv:/media/tv
devices:
- /dev/dri:/dev/dri
environment:
- TZ=Asia/Kolkata
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
restart: unless-stopped
ports:
- "8080:8080"
- "6881:6881"
- "6881:6881/udp"
volumes:
- ./qbittorrent/config:/config
- /home/ubuntu/media/downloads:/downloads
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Kolkata
- WEBUI_PORT=8080
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr
restart: unless-stopped
ports:
- "9696:9696"
volumes:
- ./prowlarr/config:/config
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Kolkata
jackett:
image: lscr.io/linuxserver/jackett:latest
container_name: jackett
restart: unless-stopped
ports:
- "9117:9117"
volumes:
- ./jackett/config:/config
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Kolkata
- AUTO_UPDATE=true
depends_on:
- flaresolverr
privoxy:
image: caligari/privoxy:latest
container_name: privoxy
restart: unless-stopped
ports:
- "8118:8118" # HTTP proxy
environment:
- TZ=Asia/Kolkata
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:8118"]
interval: 30s
timeout: 5s
retries: 3
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolverr
restart: unless-stopped
ports:
- "8191:8191"
environment:
- LOG_LEVEL=info
- LOG_HTML=false
- CAPTCHA_SOLVER=none
- TZ=Asia/Kolkata
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8191/health"]
interval: 30s
timeout: 5s
retries: 3
dispatcharr:
image: ghcr.io/dispatcharr/dispatcharr:latest
container_name: dispatcharr
restart: unless-stopped
ports:
- "9191:9191"
volumes:
- ./dispatcharr/config:/config
environment:
- TZ=Asia/Kolkata
- DISPATCHARR_PORT=9191
depends_on:
- radarr
- sonarr
- prowlarr
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: radarr
restart: unless-stopped
ports:
- "7878:7878"
volumes:
- ./radarr/config:/config
- /home/ubuntu/media/movies:/movies
- /home/ubuntu/media/downloads:/downloads
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Kolkata
depends_on:
- qbittorrent
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
restart: unless-stopped
ports:
- "8989:8989"
volumes:
- ./sonarr/config:/config
- /home/ubuntu/media/tv:/tv
- /home/ubuntu/media/downloads:/downloads
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Kolkata
depends_on:
- qbittorrent