-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose-jellyfin.yaml
233 lines (221 loc) · 5.48 KB
/
compose-jellyfin.yaml
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
networks:
default:
name: home-media-server
external: true
services:
qbittorrent:
container_name: qbittorrent
image: ghcr.io/hotio/qbittorrent
cap_add:
- NET_ADMIN
ports:
- 8080:8080
environment:
- PUID=$PUID
- PGID=$PGID
- UMASK=002
- TZ=$TZ
- WEBUI_PORTS=8080/tcp,8080/udp
- VPN_ENABLED=true
- VPN_PROVIDER=pia
- VPN_LAN_NETWORK=192.168.0.0/24
- VPN_LAN_LEAK_ENABLED=false
- VPN_AUTO_PORT_FORWARD=true
- VPN_KEEP_LOCAL_DNS=false
- VPN_FIREWALL_TYPE=auto
- VPN_HEALTHCHECK_ENABLED=true
- VPN_PIA_USER=$OPENVPN_USER
- VPN_PIA_PASS=$OPENVPN_PASSWORD
- VPN_PIA_PREFERRED_REGION=ca
- VPN_PIA_DIP_TOKEN=no
- VPN_PIA_PORT_FORWARD_PERSIST=false
- PRIVOXY_ENABLED=false
- UNBOUND_ENABLED=false
volumes:
- ./configs/qbittorrent:/config
- $MEDIADIR:/data
sysctls:
- net.ipv4.conf.all.src_valid_mark=1
- net.ipv6.conf.all.disable_ipv6=1
restart: unless-stopped
bazarr: #subtitle grabber
container_name: bazarr
image: ghcr.io/hotio/bazarr
ports:
- "6767:6767"
environment:
- PUID=$PUID
- PGID=$PGID
- UMASK=002
- TZ=$TZ
- WEBUI_PORTS=6767/tcp,6767/udp
volumes:
- ./configs/bazarr:/config
- $MEDIADIR:/data/media
restart: unless-stopped
caddy:
container_name: caddy
image: ghcr.io/hotio/caddy
cap_add:
- NET_ADMIN
ports:
- "80:8080"
- "443:8443"
environment:
- PUID=$PUID
- PGID=$PGID
- UMASK=002
- TZ=$TZ
- CUSTOM_BUILD=/config/caddy_linux_amd64_custom
volumes:
- ./configs/caddy:/config
restart: unless-stopped
jellyseerr: #media requesting tool
container_name: jellyseerr
image: ghcr.io/hotio/jellyseerr
ports:
- "5055:5055"
environment:
- PUID=$PUID
- PGID=$PGID
- UMASK=002
- TZ=$TZ
- WEBUI_PORTS=5055/tcp,5055/udp
volumes:
- ./configs/jellyseerr:/app/config
restart: unless-stopped
jellyfin: # Media Server
container_name: jellyfin
image: jellyfin/jellyfin
network_mode: host
extra_hosts:
- "host.docker.internal:host-gateway"
user: $PUID:$PGID
group_add:
- "105"
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
environment:
- TZ=$TZ
volumes:
- ./configs/jellyfin:/config
- ./configs/jellyfin/cache:/cache
- ./configs/jellyfin/cache/transcodes:/transcodes
- type: bind
source: $MEDIADIR
target: /data/media
restart: unless-stopped
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolverr
environment:
- LOG_LEVEL=info
- LOG_HTML=false
- CAPTCHA_SOLVER=none
- TZ=$TZ
ports:
- "8191:8191"
restart: unless-stopped
prowlarr: #indexer manager for Sonarr & Radarr
container_name: prowlarr
image: ghcr.io/hotio/prowlarr
ports:
- "9696:9696"
environment:
- PUID=$PUID
- PGID=$PGID
- UMASK=002
- TZ=$TZ
- WEBUI_PORTS=9696/tcp,9696/udp
volumes:
- ./configs/prowlarr:/config
restart: unless-stopped
radarr: #movie search agent
container_name: radarr
image: ghcr.io/hotio/radarr
ports:
- "7878:7878"
environment:
- PUID=$PUID
- PGID=$PGID
- UMASK=002
- TZ=$TZ
- WEBUI_PORTS=7878/tcp,7878/udp
volumes:
- ./configs/radarr:/config
- $MEDIADIR:/data
restart: unless-stopped
sonarr: #TV show search agent
container_name: sonarr
image: ghcr.io/hotio/sonarr
ports:
- "8989:8989"
environment:
- PUID=$PUID
- PGID=$PGID
- UMASK=002
- TZ=$TZ
- WEBUI_PORTS=8989/tcp,8989/udp
volumes:
- ./configs/sonarr:/config
- $MEDIADIR:/data
restart: unless-stopped
tdarr:
container_name: tdarr
image: ghcr.io/haveagitgat/tdarr:latest
ports:
- 8265:8265 # webUI port
- 8266:8266 # server port
environment:
- TZ=$TZ
- PUID=$PUID
- PGID=$PGID
- UMASK_SET=002
- serverIP=0.0.0.0
- serverPort=8266
- webUIPort=8265
- internalNode=true
- inContainer=true
- ffmpegVersion=6
- nodeName=ServerNode
volumes:
- ./configs/tdarr/server:/app/server
- ./configs/tdarr/configs:/app/configs
- ./configs/tdarr/logs:/app/logs
- $MEDIADIR/media:/media
- ./configs/tdarr/transcode_cache:/temp
devices:
- /dev/dri:/dev/dri
restart: unless-stopped
homarr:
container_name: homarr
image: ghcr.io/ajnart/homarr:latest
restart: unless-stopped
environment:
- TZ=$TZ
- DEFAULT_COLOR_SCHEME=dark
- DISABLE_ANALYTICS=true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./configs/homarr/configs:/app/data/configs
- ./configs/homarr/icons:/app/public/icons
- ./configs/homarr/data:/data
ports:
- '7575:7575'
dash:
image: mauricenino/dashdot:latest
container_name: dash
restart: unless-stopped
privileged: true
ports:
- '3001:3001'
environment:
- DASHDOT_ENABLE_CPU_TEMPS=true
- DASHDOT_WIDGET_LIST=cpu,storage,ram,network
- DASHDOT_PAGE_TITLE=Home Server
- DASHDOT_ALWAYS_SHOW_PERCENTAGES=true
- DASHDOT_ACCEPT_OOKLA_EULA=true
- DASHDOT_SPEED_TEST_INTERVAL=720 # 12h
- DASHDOT_FS_DEVICE_FILTER=nvme0n1
volumes:
- /:/mnt/host:ro