-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
301 lines (282 loc) · 6.55 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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
---
version: "3.1"
services:
heimdall:
image: lscr.io/linuxserver/heimdall:latest
container_name: heimdall
environment:
- PUID=1000
- PGID=999
- TZ=America/Chicago
volumes:
- type: bind
source: ~/appdata/heimdall/config/
target: /config
networks:
- network
ports:
- 85:80
- 445:443
restart: unless-stopped
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=999
- TZ=America/Chicago
- JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
volumes:
- type: bind
source: ~/appdata/jellyfin/library/
target: /config
- type: bind
source: ~/appdata/jellyfin/tvseries/
target: /data/tvshows
- type: bind
source: ~/appdata/jellyfin/movies/
target: /data/movies
networks:
- network
ports:
- 8096:8096
restart: unless-stopped
yacht:
image: selfhostedpro/yacht:latest
container_name: yacht
volumes:
- type: bind
source: ~/appdata/yacht/
target: /config
- /var/run/docker.sock:/var/run/docker.sock
networks:
- network
ports:
- 8000:8000
restart: unless-stopped
deluge:
image: lscr.io/linuxserver/deluge:latest
container_name: deluge
environment:
- PUID=1000
- PGID=999
- TZ=America/Chicago
volumes:
- type: bind
source: ~/appdata/deluge/config/
target: /config
- type: bind
source: ~/Downloads/
target: /downloads
networks:
- network
ports:
- 8112:8112
- 6881:6881
- 6881:6881/udp
restart: unless-stopped
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: radarr
environment:
- PUID=1000
- PGID=999
- TZ=America/Chicago
volumes:
- type: bind
source: ~/appdata/radarr/config/
target: /config
- type: bind
source: ~/appdata/jellyfin/movies/
target: /movies
- type: bind
source: ~/Downloads
target: /downloads
networks:
- network
ports:
- 7878:7878
restart: unless-stopped
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
environment:
- PUID=1000
- PGID=999
- TZ=America/Chicago
volumes:
- type: bind
source: ~/appdata/sonarr/config/
target: /config
- type: bind
source: ~/appdata/jellyfin/tvseries
target: /tv
- type: bind
source: ~/Downloads
target: /downloads
networks:
- network
ports:
- 8989:8989
restart: unless-stopped
homeassistant:
image: lscr.io/linuxserver/homeassistant
container_name: homeassistant
environment:
- PUID=1000
- PGID=999
- TZ=America/Chicago
volumes:
- type: bind
source: ~/appdata/homeassistant/
target: /config
networks:
- network
ports:
- 8123:8123
restart: unless-stopped
uptime-kuma:
image: louislam/uptime-kuma:alpine
container_name: uptime-kuma
volumes:
- type: bind
source: ~/appdata/uptime-kuma/
target: /app/data
networks:
- network
ports:
- 3001:3001
restart: unless-stopped
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
volumes:
- type: bind
source: ~/appdata/portainer/
target: /data
- /var/run/docker.sock:/var/run/docker.sock
networks:
- network
ports:
- 9443:9443
restart: unless-stopped
cloudflare:
image: cloudflare/cloudflared:latest
container_name: cloudflare-tunnel
command: tunnel --no-autoupdate run
environment:
- TUNNEL_TOKEN=${CLOUDFLARE_TUNNEL_TOKEN} # Stored in .env at top-level directory
restart: unless-stopped
guacamole:
image: abesnier/guacamole
container_name: guacamole
volumes:
- type: bind
source: ~/appdata/guacamole/config/
target: /config
networks:
- network
ports:
- 8181:8080
restart: unless-stopped
dashy:
image: lissy93/dashy
container_name: Dashy
volumes:
- type: bind
source: ~/appdata/dashy/config.yml
target: /app/public/conf.yml
environment:
- NODE_ENV=production
- UID=1000
- GID=999
networks:
- network
ports:
- 4000:80
healthcheck:
test: ["CMD", "node", "/app/services/healthcheck"]
interval: 1m30s
timeout: 10s
retries: 3
start_period: 40s
restart: unless-stopped
# Statically setting the IP Gateway to prevent changing IP for cloudflare
networks:
network:
driver: bridge
ipam:
config:
- subnet: 172.21.255.0/24
gateway: 172.21.255.1
#pihole:
# image: pihole/pihole:latest
# container_name: pihole
# environment:
# TZ: America/Chicago
# WEBPASSWORD: asdf
# volumes:
# - ~/appdata/pi-hole/:/etc/pihole
# - ~/appdata/pi-hole/dns-masq.d/:/etc/dnsmasq.d
#
# ports:
# - 53:53/tcp
# - 53:53/udp
# - 8081:80/tcp
# GITLAB IS TOO DEMANDING
#gitlab:
# image: 'gitlab/gitlab-ee:latest'
# hostname: 'gitlab.dancard32.com'
# container_name: gitlab
# environment:
# GITLAB_OMNIBUS_CONFIG: |
# external_url 'https://gitlab.dancard32.com'
# # Add any other gitlab.rb configuration here, each on its own line
# networks:
# - network
# ports:
# - '80:80'
# - '448:443'
# - '2222:22'
# volumes:
# - type: bind
# source: ~/appdata/gitlab_home/config
# target: /etc/gitlab
# - type: bind
# source: ~/appdata/gitlab_home/logs
# target: /var/log/gitlab
# - type: bind
# source: ~/appdata/gitlab_home/data
# target: /var/opt/gitlab
# shm_size: '256m'
#
# restart: unless-stopped
# restart: unless-stopped
#nut-upsd:
# image: instantlinux/nut-upsd
# ports:
# - 3493:3493
# environment:
# - SERIAL=abcdef123456
# secrets:
# - nut-upsd-password
# devices:
# - /dev/usb/hiddev0:/dev/usb/hiddev0
# privileged: true
# restart: unless-stopped
#cloudflare-ddns:
# image: oznu/cloudflare-ddns:latest
# restart: always
# environment:
# - API_KEY=xxxxxxx
# - ZONE=example.com
# - SUBDOMAIN=subdomain
# - PROXIED=false
#image: nginx
# volumes:
# - ./templates:/etc/nginx/templates
# ports:
# - "8080:80"
# environment:
# - NGINX_HOST=foobar.com
# - NGINX_PORT=80