-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
165 lines (160 loc) · 3.83 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
version: "3.9"
########################### NETWORKS
networks:
t3_proxy:
name: t3_proxy
driver: bridge
ipam:
config:
- subnet: 192.168.90.0/24
games:
name: games
driver: bridge
ipam:
config:
- subnet: 10.1.0.0/24
default:
driver: bridge
socket_proxy:
name: socket_proxy
driver: bridge
ipam:
config:
- subnet: 192.168.91.0/24
dockeripvlan:
external: true
name: br0
########################### SECRETS
secrets:
postgres_password:
file: $SECRETSDIR/postgres_password
# Traefik
htpasswd:
file: $SECRETSDIR/htpasswd
cf_token:
file: $SECRETSDIR/cf_token
# Cloudflare
cf_ddns_token:
file: $SECRETSDIR/cf_ddns_token
# Oauth
traefik_forward_auth:
file: $SECRETSDIR/traefik_forward_auth
# Authelia
authelia_jwt_secret:
file: $SECRETSDIR/authelia_jwt_secret
authelia_storage_encryption_key:
file: $SECRETSDIR/authelia_storage_encryption_key
authelia_session_secret:
file: $SECRETSDIR/authelia_session_secret
authelia_session_redis_password:
file: $SECRETSDIR/authelia_session_redis_password
# Paperless
paperless_user:
file: $SECRETSDIR/paperless_user
paperless_password:
file: $SECRETSDIR/paperless_password
paperless_email:
file: $SECRETSDIR/paperless_email
paperless_key:
file: $SECRETSDIR/paperless_key
# Nextcloud
nextcloud_admin_user:
file: $SECRETSDIR/nextcloud_admin_user
nextcloud_admin_password:
file: $SECRETSDIR/nextcloud_admin_password
# Plex
plex_claim:
file: $SECRETSDIR/plex_claim
########################### SERVICES
include:
# CORE
- compose/traefik.yml
- compose/socket-proxy.yml
- compose/authelia.yml
# SECURITY
- compose/crowdsec.yml
- compose/traefik-bouncer.yml
- compose/cloudflare-bouncer.yml
# FRONTEND
- compose/filebrowser.yml
- compose/calibre-web.yml
- compose/portainer.yml
- compose/nextcloud.yml
- compose/paperless.yml
- compose/recipes.yml
- compose/overseerr.yml
- compose/homepage.yml
- compose/speedtest.yml
- compose/it-tools.yml
- compose/s-pdf.yml
- compose/glances.yml
- compose/website.yml
- compose/reactive-resume.yml
- compose/invoiceninja.yml
- compose/nginx-invoiceninja.yml
- compose/excalidraw.yml
# MONITORING
- compose/uptime-kuma.yml
- compose/grafana.yml
# DATABASE
- compose/influxdb.yml
- compose/prometheus.yml
- compose/postgres-paperless.yml
- compose/postgres-nextcloud.yml
- compose/postgres-recipes.yml
- compose/postgres-speedtest.yml
- compose/postgres-reactive-resume.yml
- compose/redis-paperless.yml
- compose/redis-nextcloud.yml
- compose/redis-authelia.yml
- compose/redis-invoiceninja.yml
- compose/mysql-invoiceninja.yml
# UTILITY
- compose/adguardhome.yml
- compose/homeassistant.yml
- compose/gluetun.yml
- compose/calibre.yml
- compose/duplicati.yml
- compose/onlyoffice.yml
- compose/notifiarr.yml
- compose/tika.yml
- compose/gotenberg.yml
- compose/qdirstat.yml
- compose/timetagger.yml
- compose/chrome.yml
- compose/minio.yml
- compose/protonmail-bridge.yml
# PVR
- compose/radarr.yml
- compose/radarr-anime.yml
- compose/readarr.yml
- compose/sonarr.yml
- compose/sonarr-anime.yml
- compose/prowlarr.yml
- compose/bazarr.yml
# DOWNLOADERS
- compose/qbittorrent.yml
- compose/sabnzbd.yml
# MEDIA
- compose/plex.yml
- compose/plexmm.yml
- compose/tautulli.yml
# MAINTAINANCE
- compose/cloudddns-cloud.yml
- compose/cloudddns-public.yml
- compose/dockergc.yml
- compose/watchtower.yml
- compose/deunhealth.yml
# GAMES
- compose/playit.yml
- compose/ttt.yml
- compose/factorio.yml
- compose/valheim.yml
- compose/minecraft-allthemods9.yml
- compose/palworld.yml
# AI
- compose/ollama.yml
- compose/openwebui.yml
- compose/comfyui.yml
# DEV
- compose/mk-website.yml