This repository has been archived by the owner on Oct 22, 2020. It is now read-only.
forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
76 lines (76 loc) · 2.27 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
version: "3"
services:
localstack:
image: localstack/localstack@sha256:f21f1fc770ee4bfd5012afdc902154c56b7fb18c14cf672de151b65569c8251e
ports:
- "4568:4568"
- "4582:4582"
- "4571:4571"
environment:
SERVICES: kinesis:4568,cloudwatch:4582,elasticsearch:4571
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
zookeeper:
image: wurstmeister/zookeeper
ports:
- "2181:2181"
kafka:
image: wurstmeister/kafka
ports:
- "9091-9093:9091-9093"
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_LISTENERS: PLAINTEXT://:9092,SSL://:9091
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:9092,SSL://localhost:9091
KAFKA_SSL_KEYSTORE_LOCATION: /certs/localhost.p12
KAFKA_SSL_KEYSTORE_PASSWORD: NOPASS
KAFKA_SSL_TRUSTSTORE_LOCATION: /certs/localhost.p12
KAFKA_SSL_TRUSTSTORE_PASSWORD: NOPASS
KAFKA_SSL_KEY_PASSWORD: NOPASS
KAFKA_SSL_ENDPOINT_IDENTIFICATION_ALGORITHM: none
volumes:
- ./tests/data/localhost.p12:/certs/localhost.p12:ro
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
elasticsearch-tls:
image: elasticsearch:6.6.2
ports:
- "9201:9200"
- "9301:9300"
environment:
- discovery.type=single-node
- xpack.security.enabled=true
- xpack.security.http.ssl.enabled=true
- xpack.security.transport.ssl.enabled=true
- xpack.ssl.certificate=certs/localhost.crt
- xpack.ssl.key=certs/localhost.key
volumes:
- ./tests/data:/usr/share/elasticsearch/config/certs:ro
clickhouse:
image: yandex/clickhouse-server:19
ports:
- "8123:8123"