-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplates.json
More file actions
817 lines (817 loc) · 25.1 KB
/
Copy pathtemplates.json
File metadata and controls
817 lines (817 loc) · 25.1 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
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
{
"version": "2",
"templates": [
{
"type": 2,
"title": "Diun",
"description": "Diun - Docker Image Update Notifier",
"categories": ["Homelab", "Maintenance"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/diun/docker-compose.yml"
},
"env": [
{
"name": "VOLUME_NAME",
"label": "Volume name",
"default": "diun_data"
},
{
"name": "CRON_SCHEDULE",
"label": "Cron schedule",
"default": "0 */6 * * *"
},
{
"name": "NOTIF_WEBHOOK_ENDPOINT",
"label": "Notification webhook endpoint"
},
{
"name": "NOTIF_WEBHOOK_METHOD",
"label": "Notification webhook method",
"select": [
{
"text": "POST",
"value": "POST",
"default": true
},
{
"text": "GET",
"value": "GET"
}
]
}
]
},
{
"type": 2,
"title": "Cloudflared",
"description": "Cloudflared tunnel application",
"categories": ["Homelab", "Tooling"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/cloudflared/docker-compose.yml"
},
"env": [
{
"name": "TUNNEL_NAME",
"label": "The cloudflare tunnel name you like to connect to."
}
]
},
{
"type": 2,
"title": "pangolin",
"description": "pangolin client application",
"categories": ["Homelab", "Tooling"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/pangolin/docker-compose.yml"
}
},
{
"type": 2,
"title": "Heimdall",
"description": "Heimdall is an elegant solution to organise all your web applications. It’s dedicated to this purpose so you won’t lose your links in a sea of bookmarks.",
"categories": ["Homelab", "Tunneling"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/heimdall/docker-compose.yml"
},
"env": [
{
"name": "HTTP_PORT",
"label": "HTTP port"
},
{
"name": "HTTPS_PORT",
"label": "HTTPS port"
},
{
"name": "PUID",
"label": "PUID",
"description": "for UserID"
},
{
"name": "PGID",
"label": "PGID",
"description": "for GroupID"
},
{
"name": "VOLUME_NAME",
"label": "Volume name",
"description": "Volume name for config data",
"default": "heimdall_config"
},
{
"name": "TRAEFIK_HOST",
"label": "Traefik hostname",
"description": "Hostname for Traefik routing to Seafile (e.g. app.lab.example.com)"
}
]
},
{
"type": 2,
"title": "Dozzle",
"description": "Dozzle is a small lightweight application with a web based interface to monitor Docker logs. It doesn’t store any log files. It is for live monitoring of your container logs only.",
"categories": ["Homelab", "Maintenance"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/dozzle/docker-compose.yml"
},
"env": [
{
"name": "HTTP_PORT",
"label": "HTTP port",
"default": "9999"
},
{
"name": "DOZZLE_DATA_PATH",
"label": "Data path (e.g. for users.yml)"
},
{
"name": "DOZZLE_REMOTE_AGENT_ONE",
"label": "Dozzle remote agent",
"description": "Provide in format host:port"
},
{
"name": "TRAEFIK_HOST",
"label": "Traefik hostname",
"description": "Hostname for Traefik routing to Seafile (e.g. app.lab.example.com)"
}
]
},
{
"type": 2,
"title": "Dozzle Agent",
"description": "Dozzle connects to the main dozzle instance.",
"categories": ["Homelab", "Maintenance"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/dozzle-agent/docker-compose.yml"
}
},
{
"type": 2,
"title": "Openspeedtest",
"description": "SpeedTest by OpenSpeedTest™ - Free & Open-Source HTML5 Network Performance Estimation Tool. ",
"categories": ["Homelab", "Tooling"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/openspeedtest/docker-compose.yml"
},
"env": [
{
"name": "HTTP_PORT",
"label": "HTTP port",
"default": "3001"
},
{
"name": "HTTPS_PORT",
"label": "HTTPS port",
"default": "3002"
}
]
},
{
"type": 2,
"title": "Docker volume backup",
"description": "Backup Docker volumes locally or to any S3, WebDAV, Azure Blob Storage or SSH compatible storage. (this app WebDav only currently)",
"categories": ["Homelab", "Backup", "Tooling"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/docker_volume_backup/docker-compose.yml"
},
"env": [
{
"name": "VOLUME_NAME",
"label": "Volume name",
"description": "Volume to backup"
},
{
"name": "BACKUP_CRON_EXPRESSION",
"label": "Cron",
"description": "Cron expression to schedule the backup"
},
{
"name": "BACKUP_FILENAME",
"label": "Backup filename",
"description": "Filename to use for the backup e.g. backup-%Y-%m-%dT%H-%M-%S.tar.gz"
},
{
"name": "BACKUP_RETENTION_DAYS",
"label": "Backup retention days"
},
{
"name": "BACKUP_STOP_DURING_BACKUP_LABEL",
"label": "Container label to stop during backup"
},
{
"name": "WEBDAV_URL",
"label": "WebDAV URL"
},
{
"name": "WEBDAV_PATH",
"label": "WebDAV Path",
"description": "Backup location on the WebDAV target"
},
{
"name": "WEBDAV_USERNAME",
"label": "WebDAV Username"
},
{
"name": "AGE_PUBLIC_KEYS",
"label": "Age public keys (comma separated)"
}
]
},
{
"type": 2,
"title": "Grafana",
"description": "Operational dashboards for your data here, there, or anywhere",
"categories": ["Homelab", "Tooling", "Charts"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/grafana/docker-compose.yml"
},
"env": [
{
"name": "HTTP_PORT",
"label": "HTTP port",
"default": "3000"
},
{
"name": "VOLUME_NAME",
"label": "Volume name"
},
{
"name": "TRAEFIK_HOST",
"label": "Traefik hostname",
"description": "Hostname for Traefik routing to Seafile (e.g. app.lab.example.com)"
}
]
},
{
"type": 2,
"title": "InfluxDB 2.0",
"description": "InfluxDB is an open source time series database for recording metrics, events, and analytics.",
"categories": ["Homelab", "Tooling", "Database"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/influxdb/docker-compose.yml"
},
"env": [
{
"name": "HTTP_PORT",
"label": "HTTP port",
"default": "8086"
},
{
"name": "VOLUME_NAME_DATA",
"label": "Volume name data"
},
{
"name": "VOLUME_NAME_CONFIG",
"label": "Volume name config"
}
]
},
{
"type": 2,
"title": "Paperless-ngx",
"description": "Paperless-ngx is a community-supported open-source document management system that transforms your physical documents into a searchable online archive so you can keep, well, less paper.",
"categories": ["Homelab", "Tooling"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/paperlessngx/docker-compose.yml"
},
"env": [
{
"name": "POSTGRESS_DB",
"label": "Postgress DB",
"default": "paperless"
},
{
"name": "POSTGRESS_USER",
"label": "Postgress User",
"default": "paperless"
},
{
"name": "HTTP_PORT",
"label": "HTTP port",
"default": "8010"
},
{
"name": "USER_UID",
"label": "User UID",
"default": "1000"
},
{
"name": "USER_GID",
"label": "User GID",
"default": "1000"
},
{
"name": "PAPERLESS_URL",
"label": "Paperless URL"
},
{
"name": "PAPERLESS_APP_TITLE",
"label": "Paperless App Title",
"default": "Paperless-ngx"
},
{
"name": "PAPERLESS_WEBSERVER_BACKUP_SERVICE_LABEL",
"label": "Paperless Webserver Backup Service label",
"default": "paperless-webserver"
},
{
"name": "PAPERLESS_DB_BACKUP_SERVICE_LABEL",
"label": "Paperless DB Backup Service label",
"default": "paperless-db"
},
{
"name": "PAPERLESS_BROKER_BACKUP_SERVICE_LABEL",
"label": "Paperless Broker Backup Service label",
"default": "paperless-broker"
},
{
"name": "VOLUME_NAME_DATA",
"label": "Volume name data"
},
{
"name": "VOLUME_NAME_MEDIA",
"label": "Volume name media"
},
{
"name": "VOLUME_NAME_PG_DATA",
"label": "Volume name postgress data"
},
{
"name": "VOLUME_NAME_REDIS_DATA",
"label": "Volume name redis data"
},
{
"name": "EXPORT_DIR",
"label": "Export dir"
},
{
"name": "TRAEFIK_HOST",
"label": "Traefik hostname",
"description": "Hostname for Traefik routing to Seafile (e.g. app.lab.example.com)"
}
]
},
{
"type": 2,
"title": "Uptime Kuma",
"description": "Uptime Kuma is an easy-to-use self-hosted monitoring tool.",
"categories": ["Homelab", "Maintenance"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/uptime_kuma/docker-compose.yml"
},
"env": [
{
"name": "HTTP_PORT",
"label": "HTTP port",
"default": "3001"
},
{
"name": "VOLUME_NAME",
"label": "Volume name",
"description": "Volume name for kuma data",
"default": "uptime_kuma"
}
]
},
{
"type": 2,
"title": "Kicktipp Bot",
"description": "This script can automatically enter tips into Kicktipp based on the quotes of the bookmakers. It is written in Python and uses Selenium to interact with the website.",
"categories": ["Homelab", "Tooling"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/kicktipp_bot/docker-compose.yml"
},
"env": [
{
"name": "KICKTIPP_EMAIL",
"label": "Kicktipp email address to login"
},
{
"name": "KICKTIPP_NAME_OF_COMPETITION",
"label": "Competition name"
},
{
"name": "KICKTIPP_HOURS_UNTIL_GAME",
"label": "Hours untill the game starts",
"default": "8"
},
{
"name": "KICKTIPP_RUN_EVERY_X_MINUTES",
"label": "Run script every x minutes",
"default": "20"
}
]
},
{
"type": 2,
"title": "Ollama",
"description": "Get up and running with large language models.",
"categories": ["Homelab", "Maintenance"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/ollama/docker-compose.yml"
},
"env": [
{
"name": "HTTP_PORT",
"label": "HTTP port",
"default": "11434"
},
{
"name": "VOLUME_NAME",
"label": "Volume name",
"description": "Volume name for ollama data",
"default": "ollama_data"
}
]
},
{
"type": 2,
"title": "EVCC",
"description": "EVCC Sonne tanken",
"categories": ["Homelab", "PV"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/evcc/docker-compose.yml"
},
"env": [
{
"name": "HTTP_PORT",
"label": "HTTP port",
"default": "7070"
},
{
"name": "OCPP_PORT",
"label": "OCPP port",
"default": "8887"
},
{
"name": "VOLUME_NAME",
"label": "Volume name",
"description": "Volume name for evcc data",
"default": "evcc_data"
},
{
"name": "EVCC_BACKUP_SERVICE_LABEL",
"label": "EVCC Backup Service label",
"default": "evcc"
},
{
"name": "TRAEFIK_HOST",
"label": "Traefik hostname",
"description": "Hostname for Traefik routing to Seafile (e.g. app.lab.example.com)"
}
]
},
{
"type": 2,
"title": "Victoria Metrics",
"description": "Simple & Reliable Monitoring That Scales",
"categories": ["Homelab", "Tooling", "Database"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/victoriametrics/docker-compose.yml"
},
"env": [
{
"name": "HTTP_PORT",
"label": "HTTP port",
"default": "8428"
},
{
"name": "INFLUX_PORT",
"label": "Influx line protocol port",
"default": "8089"
},
{
"name": "VOLUME_NAME",
"label": "Volume name",
"description": "Volume name for victoriametrics data",
"default": "victoriametrics_data"
},
{
"name": "VICTORIAMETRICS_BACKUP_SERVICE_LABEL",
"label": "Victoria Metrics Backup Service label",
"default": "victoriametrics"
},
{
"name": "TRAEFIK_HOST",
"label": "Traefik hostname",
"description": "Hostname for Traefik routing to Seafile (e.g. app.lab.example.com)"
}
]
},
{
"type": 2,
"title": "Mail archiver",
"description": "A comprehensive solution for archiving, searching, and exporting emails",
"categories": ["Homelab", "Tooling", "Email"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/mail_archiver/docker-compose.yml"
},
"env": [
{
"name": "HTTP_PORT",
"label": "HTTP port",
"default": "5000"
},
{
"name": "VOLUME_NAME_DATA_KEYS",
"label": "Volume name data keys",
"description": "Volume name for the mail archiver data keys",
"default": "mailarchiver_data_keys"
},
{
"name": "VOLUME_NAME_DATA",
"label": "Volume name data",
"description": "Volume name for the mail archiver data",
"default": "mailarchiver_data"
}
]
},
{
"type": 2,
"title": "Mealie",
"description": "A Place For All Your Recipes",
"categories": ["Homelab", "Tooling", "Food"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/mealie/docker-compose.yml"
},
"env": [
{
"name": "HTTP_PORT",
"label": "HTTP port",
"default": "9925"
},
{
"name": "VOLUME_NAME",
"label": "Volume name",
"description": "Volume name for the mealie data",
"default": "mealie_data"
},
{
"name": "BASE_URL",
"label": "Base url",
"description": "Base url used for notifications",
"default": "http://localhost:9925"
},
{
"name": "TRAEFIK_HOST",
"label": "Traefik hostname",
"description": "Hostname for Traefik routing to Seafile (e.g. app.lab.example.com)"
}
]
},
{
"type": 2,
"title": "Immich",
"description": "Self-hosted photo and video management solution",
"categories": ["Homelab", "Tooling", "Media"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/immich/docker-compose.yml"
},
"env": [
{
"name": "HTTP_PORT",
"label": "HTTP port",
"default": "2283"
},
{
"name": "VOLUME_NAME_MODEL_CACHE",
"label": "Volume name model cache",
"description": "Volume name for the immich model cache",
"default": "immich_model_cache"
},
{
"name": "VOLUME_NAME_DATA",
"label": "Volume name data",
"description": "Volume name for the immich data (photos, videos, etc)",
"default": "immich_data"
},
{
"name": "VOLUME_NAME_DATA_LIBRARY",
"label": "Volume name data library",
"description": "Volume name for the immich data (photos, videos, etc)",
"default": "immich_data_library"
},
{
"name": "VOLUME_NAME_DB",
"label": "Volume name db",
"description": "Volume name for the immich db",
"default": "immich_db"
},
{
"name": "IMMICH_VERSION",
"label": "Immich version",
"description": "Immich version to use",
"default": "v2"
},
{
"name": "IMMICH_ALLOW_SETUP",
"label": "Immich allow access to admin setup",
"description": "Immich allow access to admin setup",
"default": "true"
},
{
"name": "DB_USERNAME",
"label": "DB username",
"description": "Database username",
"default": "postgres"
},
{
"name": "DB_DATABASE_NAME",
"label": "DB database name",
"description": "Database name to use",
"default": "immich"
},
{
"name": "TRAEFIK_HOST",
"label": "Traefik hostname",
"description": "Hostname for Traefik routing to Seafile (e.g. app.lab.example.com)"
}
]
},
{
"type": 2,
"title": "Seafile",
"description": "Self-hosted file sync and share solution (Community Edition 13)",
"categories": ["Homelab", "Tooling", "Storage"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/seafile/docker-compose.yml"
},
"env": [
{
"name": "HTTP_PORT",
"label": "HTTP port",
"default": "8080"
},
{
"name": "VOLUME_NAME_DATA",
"label": "Volume name data",
"description": "Volume name for the seafile shared data",
"default": "seafile_data"
},
{
"name": "VOLUME_NAME_DB",
"label": "Volume name db",
"description": "Volume name for the seafile database",
"default": "seafile_db"
},
{
"name": "SEAFILE_DB_USER",
"label": "DB username",
"description": "MariaDB user for seafile",
"default": "seafile"
},
{
"name": "SEAFILE_SERVER_HOSTNAME",
"label": "Server hostname",
"description": "Public hostname for the seafile server (e.g. seafile.example.com)"
},
{
"name": "SEAFILE_SERVER_PROTOCOL",
"label": "Server protocol",
"description": "Protocol used to access seafile (http or https)",
"default": "https"
},
{
"name": "SEAFILE_ADMIN_EMAIL",
"label": "Admin email",
"description": "Email address for the initial seafile admin account"
},
{
"name": "COLLABORA_PORT",
"label": "Collabora port",
"description": "Port for Collabora Online (office editing)",
"default": "9980"
},
{
"name": "COLLABORA_SERVER_HOSTNAME",
"label": "Collabora hostname",
"description": "Public hostname for Collabora (e.g. collabora.example.com, must be reachable from browser via reverse proxy)"
},
{
"name": "ONLYOFFICE_PORT",
"label": "ONLYOFFICE port",
"description": "Port for ONLYOFFICE Document Server",
"default": "6233"
},
{
"name": "VOLUME_NAME_ONLYOFFICE_DATA",
"label": "Volume ONLYOFFICE data",
"description": "ONLYOFFICE-Daten",
"default": "seafile_onlyoffice_data"
},
{
"name": "VOLUME_NAME_ONLYOFFICE_LIB",
"label": "Volume ONLYOFFICE lib",
"description": "ONLYOFFICE-Lib (PostgreSQL, Converter)",
"default": "seafile_onlyoffice_lib"
},
{
"name": "VOLUME_NAME_ONLYOFFICE_LOG",
"label": "Volume ONLYOFFICE log",
"description": "ONLYOFFICE-Logs",
"default": "seafile_onlyoffice_log"
},
{
"name": "MD_MAX_CACHE_SIZE",
"label": "Metadata Server cache size",
"description": "Maximale Cache-Groesse fuer den Metadata Server",
"default": "1GB"
},
{
"name": "TRAEFIK_HOST",
"label": "Traefik hostname (Seafile)",
"description": "Hostname for Traefik routing to Seafile (e.g. seafile.lab.example.com)"
},
{
"name": "TRAEFIK_COLLABORA_HOST",
"label": "Traefik hostname (Collabora)",
"description": "Hostname for Traefik routing to Collabora (e.g. collabora.lab.example.com)"
},
{
"name": "TRAEFIK_ONLYOFFICE_HOST",
"label": "Traefik hostname (ONLYOFFICE)",
"description": "Hostname for Traefik routing to ONLYOFFICE (e.g. onlyoffice.lab.example.com)"
}
]
},
{
"type": 2,
"title": "Traefik",
"description": "Reverse proxy with automatic Let's Encrypt TLS via deSEC DNS-01",
"categories": ["Homelab", "Networking", "Reverse Proxy"],
"platform": "linux",
"repository": {
"url": "https://github.com/HomelabGeneration/docker-applications-third-party",
"stackfile": "applications/traefik/docker-compose.yml"
},
"env": [
{
"name": "ACME_EMAIL",
"label": "ACME email",
"description": "Email address for Let's Encrypt certificate registration"
},
{
"name": "DASHBOARD_HOST",
"label": "Dashboard hostname",
"description": "Hostname for the Traefik dashboard (e.g. traefik.yourdomain.com)"
},
{
"name": "TLS_DOMAIN",
"label": "TLS domain",
"description": "Base domain for wildcard certificate (e.g. lab.yourdomain.com)"
},
{
"name": "DYNAMIC_CONFIG_PATH",
"label": "Dynamic config path",
"description": "Host path to the dynamic configuration directory",
"default": "/opt/traefik/dynamic"
},
{
"name": "VOLUME_NAME_CERTIFICATES",
"label": "Volume name certificates",
"description": "Volume name for Let's Encrypt certificate storage",
"default": "traefik_certificates"
}
]
}
]
}