forked from tom472/mediabox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
263 lines (247 loc) · 6.65 KB
/
docker-compose.yml
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
version: '3'
services:
### Portainer Install
#### docker run -d -p 8000:8000 -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer
sonarr:
container_name: sonarr
image: cr.hotio.dev/hotio/sonarr
ports:
- "8989:8989"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- /etc/localtime:/etc/localtime:ro
- /data/config/sonarr_data:/config # config files
- /data:/data # media folder
radarr:
container_name: radarr
image: cr.hotio.dev/hotio/radarr
ports:
- "7878:7878"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- /etc/localtime:/etc/localtime:ro
- /data/config/radarr_data:/config # config files
- /data:/data # media folder
lidarr:
container_name: lidarr
image: cr.hotio.dev/hotio/lidarr
ports:
- "8686:8686"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- /etc/localtime:/etc/localtime:ro
- /data/config/lidarr_data:/config # config files
- /data:/data # media folder
bazarr:
container_name: bazarr
image: cr.hotio.dev/hotio/bazarr
ports:
- "6767:6767"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- /etc/localtime:/etc/localtime:ro
- /data/config/bazarr_data:/config # config files
- /data:/data # media folder
nzbget:
container_name: nzbget
image: cr.hotio.dev/hotio/nzbget
ports:
- "6789:6789"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- /etc/localtime:/etc/localtime:ro
- /data/Usenet:/data/Usenet # download folder
- /data/config/nzbget_data:/config # config files
prowlarr:
container_name: prowlarr
image: cr.hotio.dev/hotio/prowlarr:nightly
ports:
- "9696:9696"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- /data/config/prowlarr_data:/config # config files
plextraktsync:
image: ghcr.io/taxel/plextraktsync
volumes:
- /data/config/plextraktsync:/app/config
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
cap_add:
- NET_ADMIN
volumes:
- /data/config/gluetun_data:/gluetun
environment:
- VPN_SERVICE_PROVIDER=private internet access
- OPENVPN_USER=p2213036
- OPENVPN_PASSWORD=Jennifer96
- SERVER_REGIONS=US East
- FIREWALL_OUTBOUND_SUBNETS=192.168.1.0/24
- HTTPPROXY=on
ports:
- 8080:8080
- 58846:58846
# vpn:
# container_name: vpn
# image: dperson/openvpn-client:latest
# cap_add:
# - net_admin # required to modify network interfaces
# environment:
# TZ: 'EST5EDT'
# tmpfs:
# - /run
# - /tmp
# restart: unless-stopped
# volumes:
# - /dev/net:/dev/net:z # tun device
# - /data/config/vpn:/vpn # OpenVPN configuration
# security_opt:
# - label:disable
# tty: true
# ports:
# - 8080:8080 # port for deluge web UI to be reachable from local network
# - 58846:8846
# command: '-f "" -r 192.168.1.0/24' # enable firewall and route local network traffic
qbittorrent:
image: cr.hotio.dev/hotio/qbittorrent
container_name: qbittorrent
ports:
- "8080:8080"
- "8118:8118"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
- VPN_ENABLED=true
- VPN_LAN_NETWORK=192.168.1.0/24
- VPN_CONF=wg0
- VPN_IP_CHECK_DELAY=10
- PRIVOXY_ENABLED=false
cap_add:
- NET_ADMIN
sysctls:
- net.ipv4.conf.all.src_valid_mark=1
- net.ipv6.conf.all.disable_ipv6=1
# network_mode: service:gluetun
volumes:
- /data/config/qbittorrent_data:/config
- /data:/data
restart: unless-stopped
watchtower:
container_name: watchtower
image: containrrr/watchtower
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /etc/timezone:/etc/timezone:ro
environment:
- WATCHTOWER_SCHEDULE=0 0 2 * * *
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_INCLUDE_RESTARTING=true
- WATCHTOWER_NOTIFICATIONS_HOSTNAME=
- WATCHTOWER_NOTIFICATIONS=email
- WATCHTOWER_NOTIFICATION_EMAIL_FROM=
- WATCHTOWER_NOTIFICATION_EMAIL_TO=
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER=smtp.gmail.com
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT=587
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER=
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD=
- WATCHTOWER_NOTIFICATION_EMAIL_DELAY=30
# tdarr:
# container_name: tdarr
# image: ghcr.io/haveagitgat/tdarr:latest
# restart: unless-stopped
# network_mode: bridge
# ports:
# - 8265:8265 # webUI port
# - 8266:8266 # server port
# - 8267:8267 # Internal node port
# - 8268:8268 # Example extra node port
# environment:
# - TZ=America/New_York
# - PUID=1000
# - PGID=1000
# - UMASK_SET=002
# - serverIP=0.0.0.0
# - serverPort=8266
# - webUIPort=8265
# - internalNode=true
# - nodeID=MainNode
# volumes:
# - /data/config/tdarr_data/server:/app/server
# - /data/config/tdarr_data/configs:/app/configs
# - /data/config/tdarr_data/logs:/app/logs
# - /data:/data
# - /transcode_cache:/temp
#
#
# tdarr-node:
# container_name: tdarr-node
# image: ghcr.io/haveagitgat/tdarr_node:latest
# restart: unless-stopped
# network_mode: service:tdarr
# environment:
# - TZ=America/New_York
# - PUID=1000
# - PGID=1000
# - UMASK_SET=002
# - nodeID=node1
# - serverIP=0.0.0.0
# - serverPort=8266
# volumes:
# - /data/config/tdarr_data/configs:/app/configs
# - /data/config/tdarr_data/logs:/app/logs
# - /data:/data
# - /transcode_cache:/temp
# for testing later
# qbittorrent:
# container_name: qbittorrent
# image: cr.hotio.dev/hotio/qbittorrent
# ports:
# - "8080:8080"
# - "8118:8118"
# environment:
# - PUID=1000
# - PGID=1000
# - UMASK=002
# - TZ=Etc/UTC
# - VPN_ENABLED=true
# - VPN_LAN_NETWORK
# - VPN_CONF=wg0
# - VPN_ADDITIONAL_PORTS
# - VPN_IP_CHECK_DELAY=5
# - PRIVOXY_ENABLED=false
# volumes:
# - /data/config/qbit2:/config
# cap_add:
# - NET_ADMIN
# sysctls:
# - net.ipv4.conf.all.src_valid_mark=1
# - net.ipv6.conf.all.disable_ipv6=0
networks:
vpn: