This repository has been archived by the owner on Apr 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 449
/
docker-compose.yml
296 lines (286 loc) · 10.8 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
---
version: '3.6'
services:
# The environment variable "TAG" is used throughout this file to
# specify the version of the images to run. The default is set in the
# '.env' file in this folder. It can be overridden with any normal
# technique for setting environment variables, for example:
#
# TAG=6.0.0-beta1 docker-compose up
#
# REF: https://docs.docker.com/compose/compose-file/#variable-substitution
#
# Also be sure to set the ELASTIC_VERSION variable. For released versions,
# ${TAG} and ${ELASTIC_VERSION} will be identical, but for pre-release
# versions, ${TAG} might contain an extra build identifier, like
# "6.0.0-beta1-3eab5b40", so a full invocation might look like:
#
# ELASTIC_VERSION=6.0.0-beta1 TAG=6.0.0-beta1-3eab5b40 docker-compose up
#
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:${TAG}
container_name: elasticsearch
secrets:
- source: ca.crt
target: /usr/share/elasticsearch/config/certs/ca/ca.crt
- source: elasticsearch.yml
target: /usr/share/elasticsearch/config/elasticsearch.yml
- source: elasticsearch.keystore
target: /usr/share/elasticsearch/config/elasticsearch.keystore
- source: elasticsearch.key
target: /usr/share/elasticsearch/config/certs/elasticsearch/elasticsearch.key
- source: elasticsearch.crt
target: /usr/share/elasticsearch/config/certs/elasticsearch/elasticsearch.crt
ports: ['9200:9200']
networks: ['stack']
volumes:
- 'es_data:/usr/share/elasticsearch/data'
- './scripts/setup-users.sh:/usr/local/bin/setup-users.sh:ro'
healthcheck:
test: curl --cacert /usr/share/elasticsearch/config/certs/ca/ca.crt -s https://localhost:9200 >/dev/null; if [[ $$? == 52 ]]; then echo 0; else echo 1; fi
interval: 30s
timeout: 10s
retries: 5
kibana:
image: docker.elastic.co/kibana/kibana:${TAG}
container_name: kibana
secrets:
- source: kibana.yml
target: /usr/share/kibana/config/kibana.yml
- source: kibana.keystore
target: /usr/share/kibana/data/kibana.keystore
- source: ca.crt
target: /usr/share/kibana/config/certs/ca/ca.crt
- source: kibana.key
target: /usr/share/kibana/config/certs/kibana/kibana.key
- source: kibana.crt
target: /usr/share/kibana/config/certs/kibana/kibana.crt
ports: ['5601:5601']
networks: ['stack']
depends_on: ['elasticsearch']
healthcheck:
test: curl --cacert /usr/share/elasticsearch/config/certs/ca/ca.crt -s https://localhost:5601 >/dev/null; if [[ $$? == 52 ]]; then echo 0; else echo 1; fi
interval: 30s
timeout: 10s
retries: 5
logstash:
image: docker.elastic.co/logstash/logstash:${TAG}
container_name: logstash
secrets:
- source: logstash.conf
target: /usr/share/logstash/pipeline/logstash.conf
- source: logstash.yml
target: /usr/share/logstash/config/logstash.yml
- source: logstash.keystore
target: /usr/share/logstash/config/logstash.keystore
- source: ca.crt
target: /usr/share/logstash/config/certs/ca/ca.crt
networks: ['stack']
depends_on: ['elasticsearch']
healthcheck:
test: bin/logstash -t
interval: 60s
timeout: 50s
retries: 5
auditbeat:
image: docker.elastic.co/beats/auditbeat:${TAG}
container_name: auditbeat
command: -e --strict.perms=false # -e flag to log to stderr and disable syslog/file output
cap_add: ['AUDIT_CONTROL', 'AUDIT_READ']
secrets:
- source: auditbeat.yml
target: /usr/share/auditbeat/auditbeat.yml
- source: auditbeat.keystore
target: /usr/share/auditbeat/auditbeat.keystore
- source: ca.crt
target: /usr/share/auditbeat/certs/ca/ca.crt
# Auditbeat must run in the main process namespace.
pid: host
volumes:
- './scripts/setup-beat.sh:/usr/local/bin/setup-beat.sh:ro'
networks: ['stack']
depends_on: ['elasticsearch', 'kibana']
healthcheck:
test: auditbeat --strict.perms=false test config
interval: 30s
timeout: 15s
retries: 5
filebeat:
image: docker.elastic.co/beats/filebeat:${TAG}
container_name: filebeat
command: --strict.perms=false -e # -e flag to log to stderr and disable syslog/file output
# If the host system has logs at "/var/log", mount them at "/mnt/log"
# inside the container, where Filebeat can find them.
# volumes: ['/var/log:/mnt/log:ro']
secrets:
- source: filebeat.yml
target: /usr/share/filebeat/filebeat.yml
- source: filebeat.keystore
target: /usr/share/filebeat/filebeat.keystore
- source: ca.crt
target: /usr/share/filebeat/certs/ca/ca.crt
volumes:
- './scripts/setup-beat.sh:/usr/local/bin/setup-beat.sh:ro'
networks: ['stack']
depends_on: ['elasticsearch', 'kibana']
healthcheck:
test: filebeat test config
interval: 30s
timeout: 15s
retries: 5
heartbeat:
image: docker.elastic.co/beats/heartbeat:${TAG}
container_name: heartbeat
command: --strict.perms=false -e # -e flag to log to stderr and disable syslog/file output
secrets:
- source: heartbeat.yml
target: /usr/share/heartbeat/heartbeat.yml
- source: heartbeat.keystore
target: /usr/share/heartbeat/heartbeat.keystore
- source: ca.crt
target: /usr/share/heartbeat/certs/ca/ca.crt
volumes:
- './scripts/setup-beat.sh:/usr/local/bin/setup-beat.sh:ro'
networks: ['stack']
depends_on: ['elasticsearch', 'kibana']
healthcheck:
test: heartbeat test config
interval: 30s
timeout: 15s
retries: 5
metricbeat:
image: docker.elastic.co/beats/metricbeat:${TAG}
container_name: metricbeat
# The commented sections below enable Metricbeat to monitor the Docker host,
# rather than the Metricbeat container. It's problematic with Docker for
# Windows, however, since "/proc", "/sys" etc. don't exist on Windows.
# The same likely applies to OSX (needs testing).
# volumes:
# - /proc:/hostfs/proc:ro
# - /sys/fs/cgroup:/hostfs/sys/fs/cgroup:ro
# - /:/hostfs:ro
command: --strict.perms=false -e # -e flag to log to stderr and disable syslog/file output
secrets:
- source: metricbeat.yml
target: /usr/share/metricbeat/metricbeat.yml
- source: metricbeat.keystore
target: /usr/share/metricbeat/metricbeat.keystore
- source: ca.crt
target: /usr/share/metricbeat/certs/ca/ca.crt
volumes:
- './scripts/setup-beat.sh:/usr/local/bin/setup-beat.sh:ro'
networks: ['stack']
depends_on: ['elasticsearch', 'kibana']
healthcheck:
test: metricbeat test config
interval: 30s
timeout: 15s
retries: 5
packetbeat:
image: docker.elastic.co/beats/packetbeat:${TAG}
container_name: packetbeat
# Packetbeat needs some elevated privileges to capture network traffic.
# We'll grant them with POSIX capabilities.
cap_add: ['NET_RAW', 'NET_ADMIN']
# Use "host mode" networking to allow Packetbeat to capture traffic from
# the real network interface on the host, rather than being isolated to the
# container's virtual interface.
network_mode: host
# Since we did that, Packetbeat is not part of the "stack" Docker network
# that the other containers are connected to, and thus can't resolve the
# hostname "elasticsearch". Instead, we'll tell it to find Elasticsearch
# on "localhost", which is the Docker host machine in this context.
command: -e -E 'output.elasticsearch.hosts=["localhost:9200"]'
depends_on: ['elasticsearch']
command: --strict.perms=false -e -E output.elasticsearch.hosts="https://localhost:9200" # -e flag to log to stderr and disable syslog/file output
secrets:
- source: packetbeat.yml
target: /usr/share/packetbeat/packetbeat.yml
- source: packetbeat.keystore
target: /usr/share/packetbeat/packetbeat.keystore
- source: ca.crt
target: /usr/share/packetbeat/certs/ca/ca.crt
volumes:
- './scripts/setup-beat.sh:/usr/local/bin/setup-beat.sh:ro'
depends_on: ['elasticsearch', 'kibana']
healthcheck:
test: packetbeat test config
interval: 30s
timeout: 15s
retries: 5
apm-server:
image: docker.elastic.co/apm/apm-server:${TAG}
container_name: apm_server
ports: ['8200:8200']
networks: ['stack']
command: --strict.perms=false -e # -e flag to log to stderr and disable syslog/file output
secrets:
- source: apm-server.yml
target: /usr/share/apm-server/apm-server.yml
- source: apm-server.keystore
target: /usr/share/apm-server/apm-server.keystore
- source: ca.crt
target: /usr/share/apm-server/certs/ca/ca.crt
volumes:
- './scripts/setup-beat.sh:/usr/local/bin/setup-beat.sh:ro'
depends_on: ['elasticsearch', 'kibana']
healthcheck:
test: curl --cacert /usr/share/elasticsearch/config/certs/ca/ca.crt -s https://localhost:8200/healthcheck >/dev/null; if [[ $$? == 52 ]]; then echo 0; else echo 1; fi
interval: 30s
timeout: 10s
retries: 5
networks: {stack: {}}
# use docker volume to persist ES data outside of a container.
volumes:
es_data:
secrets:
ca.crt:
file: ./config/ssl/ca/ca.crt
logstash.yml:
file: ./config/logstash/logstash.yml
logstash.keystore:
file: ./config/logstash/logstash.keystore
logstash.conf:
file: ./config/logstash/pipeline/logstash.conf
elasticsearch.yml:
file: ./config/elasticsearch/elasticsearch.yml
elasticsearch.keystore:
file: ./config/elasticsearch/elasticsearch.keystore
elasticsearch.key:
file: ./config/elasticsearch/elasticsearch.key
elasticsearch.crt:
file: ./config/elasticsearch/elasticsearch.crt
elasticsearch.p12:
file: ./config/elasticsearch/elasticsearch.p12
kibana.yml:
file: ./config/kibana/kibana.yml
kibana.keystore:
file: ./config/kibana/kibana.keystore
kibana.key:
file: ./config/kibana/kibana.key
kibana.crt:
file: ./config/kibana/kibana.crt
auditbeat.yml:
file: ./config/auditbeat/auditbeat.yml
auditbeat.keystore:
file: ./config/auditbeat/auditbeat.keystore
filebeat.yml:
file: ./config/filebeat/filebeat.yml
filebeat.keystore:
file: ./config/filebeat/filebeat.keystore
heartbeat.yml:
file: ./config/heartbeat/heartbeat.yml
heartbeat.keystore:
file: ./config/heartbeat/heartbeat.keystore
metricbeat.yml:
file: ./config/metricbeat/metricbeat.yml
metricbeat.keystore:
file: ./config/metricbeat/metricbeat.keystore
packetbeat.yml:
file: ./config/packetbeat/packetbeat.yml
packetbeat.keystore:
file: ./config/packetbeat/packetbeat.keystore
apm-server.yml:
file: ./config/apm-server/apm-server.yml
apm-server.keystore:
file: ./config/apm-server/apm-server.keystore