forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (43 loc) · 1.03 KB
/
Copy pathdocker-compose.yml
File metadata and controls
43 lines (43 loc) · 1.03 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
version: "3"
services:
localstack:
image: localstack/localstack@sha256:f21f1fc770ee4bfd5012afdc902154c56b7fb18c14cf672de151b65569c8251e
ports:
- "4568:4568"
environment:
SERVICES: kinesis
minio:
image: minio/minio
ports:
- "9000:9000"
environment:
MINIO_ACCESS_KEY: "test-access-key"
MINIO_SECRET_KEY: "test-secret-key"
command: server /tmp
mockwatchlogs:
image: luciofranco/mockwatchlogs:latest
ports:
- "6000:6000"
environment:
RUST_LOG: trace
kafka:
image: spotify/kafka
ports:
- "9092:9092"
- "2181:2181"
environment:
ADVERTISED_HOST: localhost
ADVERTISED_PORT: 9092
splunk:
image: timberio/splunk-hec-test:latest
ports:
- "8088:8088"
- "8000:8000"
- "8089:8089"
elasticsearch:
image: elasticsearch:6.6.2
ports:
- "9200:9200"
- "9300:9300"
environment:
- discovery.type=single-node