forked from DataDog/dd-trace-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
123 lines (123 loc) · 2.95 KB
/
docker-compose.yaml
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
version: "3.3" # optional since v1.27.0
services:
cassandra:
image: cassandra:3.7
environment:
JVM_OPTS: "-Xms750m -Xmx750m"
ports:
- "9042:9042"
mysql:
image: circleci/mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: admin
MYSQL_PASSWORD: test
MYSQL_USER: test
MYSQL_DATABASE: test
ports:
- "3306:3306"
postgres:
image: circleci/postgres:9.5
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: postgres
ports:
- "5432:5432"
mssql:
image: mcr.microsoft.com/mssql/server:2019-latest
environment:
SA_PASSWORD: myPassw0rd
ACCEPT_EULA: Y
ports:
- "1433:1433"
consul:
image: consul:1.6.0
ports:
- "8500:8500"
redis:
image: redis:3.2
ports:
- "6379:6379"
elasticsearch2:
image: elasticsearch:2
environment:
ES_JAVA_OPTS: "-Xms750m -Xmx750m" # https://github.com/10up/wp-local-docker/issues/6
ports:
- "9200:9200"
ulimits:
nofile:
soft: 65536
hard: 65536
elasticsearch5:
image: elasticsearch:5
environment:
ES_JAVA_OPTS: "-Xms750m -Xmx750m" # https://github.com/10up/wp-local-docker/issues/6
ports:
- "9201:9200"
ulimits:
nofile:
soft: 65536
hard: 65536
elasticsearch6:
image: elasticsearch:6.8.13
environment:
http.port: 9202-9300
discovery.type: single-node
ES_JAVA_OPTS: "-Xms750m -Xmx750m" # https://github.com/10up/wp-local-docker/issues/6
ports:
- "9202:9202"
ulimits:
nofile:
soft: 65536
hard: 65536
elasticsearch7:
image: elasticsearch:7.14.1
environment:
http.port: 9203-9300
discovery.type: single-node
ES_JAVA_OPTS: "-Xms750m -Xmx750m" # https://github.com/10up/wp-local-docker/issues/6
ports:
- "9203:9203"
ulimits:
nofile:
soft: 65536
hard: 65536
datadog-agent:
image: datadog/docker-dd-agent
environment:
DD_APM_ENABLED: "true"
DD_BIND_HOST: "0.0.0.0"
DD_API_KEY: invalid_key_but_this_is_fine
ports:
- "8126:8126"
mongodb:
image: circleci/mongo:latest-ram
ports:
- "27017:27017"
memcached:
image: memcached:1.5.9
ports:
- "11211:11211"
zookeeper:
image: bitnami/zookeeper:latest
environment:
ALLOW_ANONYMOUS_LOGIN: "yes"
ports:
- "2181:2181"
kafka2:
image: wurstmeister/kafka:2.13-2.8.1
environment:
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:9092
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092
#KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: INSIDE:PLAINTEXT,OUTSIDE:PLAINTEXT,LISTENER_NAME:PLAINTEXT
KAFKA_CREATE_TOPICS: gotest:1:1,gosegtest:1:1
KAFKA_BROKER_ID: 1
depends_on:
- zookeeper
ports:
- "9092:9092"
localstack:
image: localstack/localstack:latest
ports:
- "4566:4566"