forked from thehookup/SmartHouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.support.yaml
More file actions
executable file
·241 lines (239 loc) · 5.57 KB
/
docker-compose.support.yaml
File metadata and controls
executable file
·241 lines (239 loc) · 5.57 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
# Supporting services, like database that always must be online
version: '3.5'
services:
mastodon_web:
image: tootsuite/mastodon
restart: unless-stopped
env_file: .env.mastodon
command: bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000"
healthcheck:
test: ["CMD-SHELL", "wget -q --spider --proxy=off localhost:3000/health || exit 1"]
ports:
- "127.0.0.1:7730:3000"
depends_on:
- database
- redis
volumes:
- .docker/data/mastodon:/opt/mastodon/public/system/
mastodon_streaming:
image: tootsuite/mastodon
restart: unless-stopped
env_file: .env.mastodon
command: node ./streaming
healthcheck:
test: ["CMD-SHELL", "wget -q --spider --proxy=off localhost:4000/api/v1/streaming/health || exit 1"]
ports:
- "127.0.0.1:7740:4000"
depends_on:
- database
- redis
mastodon_sidekiq:
image: tootsuite/mastodon
restart: unless-stopped
env_file: .env.mastodon
command: bundle exec sidekiq
depends_on:
- database
- redis
volumes:
- .docker/data/mastodon:/opt/mastodon/public/system/
synapse:
image: "matrixdotorg/synapse:latest"
restart: "unless-stopped"
ports:
- "127.0.0.1:18008:8008"
- "127.0.0.1:18448:8448"
volumes:
- ".docker/data/im:/data"
env_file:
- '.env.im'
depends_on:
- redis
- database
# synapse_telegram:
# image: dock.mau.dev/tulir/mautrix-telegram:v0.9.0
# restart: "unless-stopped"
# ports:
# - 29317:29317
# volumes:
# - ".docker/data/synapse_telegram/:/data"
# depends_on:
# - synapse
# synapse_discord:
# image: halfshot/matrix-appservice-discord:v1.0.0
# restart: "unless-stopped"
# ports:
# - '19005:9005'
# volumes:
# - ".docker/data/discord_synapse/:/data"
# depends_on:
# - synapse
synapse_riot:
image: "vectorim/element-web:latest"
restart: "unless-stopped"
ports:
- "127.0.0.1:18010:80"
volumes:
- ".docker/data/synapse_riot/config.json:/app/config.json"
depends_on:
- synapse
synapse_admin:
image: awesometechnologies/synapse-admin:latest
ports:
- "127.0.0.1:18009:80"
depends_on:
- synapse
# protonmail:
# image: macbury/protonmail:latest
# restart: unless-stopped
# volumes:
# - .docker/data/protonmail:/root
transfer:
image: dutchcoders/transfer.sh:latest
ports:
- "18031:8080"
env_file:
- '.env.transfer'
restart: always
ci:
image: drone/drone:1.9.0
env_file:
- '.env.ci'
restart: always
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
- .docker/data/drone:/data
ports:
- "4282:80"
depends_on:
- git
git:
image: gitea/gitea:latest
env_file:
- '.env.git'
restart: always
volumes:
- .docker/data/gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3282:3000"
- "2222:22"
depends_on:
- database
rss-bridge:
image: rssbridge/rss-bridge:latest
dns:
- 9.9.9.9
- 149.112.112.112
ports:
- '59900:80'
node-red:
build: ./node-red/
restart: unless-stopped
dns:
- 9.9.9.9
- 149.112.112.112
ports:
- 51880:1880
environment:
- TZ=Europe/Warsaw
- NODE_TLS_REJECT_UNAUTHORIZED=0
volumes:
- .docker/data/node-red:/data
- /mnt/Music:/music
gotify:
image: gotify/server:latest
ports:
- "0.0.0.0:5580:80"
volumes:
- .docker/data/gotify:/app/data
redis:
image: redis:4.0.10
ports:
- 6379:6379
volumes:
- .docker/data/redis:/data
nextcloud:
build: ./nextcloud/
ports:
- 4333:80
env_file:
- '.env.nextcloud'
volumes:
- .docker/data/nextcloud_next:/var/www/html
depends_on:
- database
- redis
healthcheck:
test: [ "CMD", "curl", "http://localhost" ]
timeout: 45s
interval: 30s
retries: 3
influxdb:
restart: unless-stopped
image: influxdb:latest
ports:
- "0.0.0.0:18086:8086"
volumes:
- .docker/data/influxdb:/var/lib/influxdb
env_file:
- '.env.influxdb'
database:
image: postgres:9.6.19-alpine
restart: unless-stopped
security_opt:
- seccomp:unconfined
ports:
- 0.0.0.0:4101:5432
environment:
PGDATA: /data
env_file:
- '.env.postgresql'
volumes:
- ./postgresql/:/docker-entrypoint-initdb.d/
- .docker/data/postgresql:/data
grafana:
image: grafana/grafana:6.5.0
restart: unless-stopped
user: "472"
env_file:
- '.env.grafana'
- '.env.influxdb'
- '.env.local'
environment:
GF_SERVER_DOMAIN: "${HOME_ASSISTANT_DOMAIN}"
GF_SERVER_ROOT_URL: "https://${HOME_ASSISTANT_DOMAIN}/grafana/"
ports:
- "127.0.0.1:4100:3000"
volumes:
- .docker/data/grafana:/var/lib/grafana
depends_on:
- influxdb
esphome:
image: esphome/esphome:latest
volumes:
- .docker/data/esphome:/config
- /etc/localtime:/etc/localtime:ro
network_mode: host
monio:
restart: unless-stopped
image: macbury/mon.io:latest
ports:
- 14000:3000
volumes:
- .docker/data/monio/:/app/storage
env_file:
- .env.monio
depends_on:
- database
smasher:
restart: unless-stopped
image: olxia172/checklist.smasher:latest
ports:
- 14001:3001
env_file:
- .env.smasher
depends_on:
- database