forked from DataDog/dd-trace-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
138 lines (137 loc) · 3.78 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
version: "2"
services:
couchbase:
image: sabrenner/couchbase-server-sandbox:latest
ports:
- "127.0.0.1:8091-8095:8091-8095"
- "127.0.0.1:11210:11210"
postgres:
image: postgres:9.5-alpine
environment:
- POSTGRES_PASSWORD=postgres
ports:
- "127.0.0.1:5432:5432"
mssql:
# A working MSSQL server is not available on ARM.
# This image provides _most_ of sqlserver functionalities, but
# does not support stored procedures (corresponding tests will fail)
image: mcr.microsoft.com/azure-sql-edge
environment:
- "ACCEPT_EULA=Y"
- "SA_PASSWORD=DD_HUNTER2"
ports:
- "127.0.0.1:1433:1433"
mysql:
image: mariadb:10.4
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
- MYSQL_DATABASE=db
ports:
- "127.0.0.1:3306:3306"
redis:
image: redis:4.0-alpine
ports:
- "127.0.0.1:6379:6379"
mongo:
image: circleci/mongo:3.6
ports:
- "127.0.0.1:27017:27017"
oracledb:
image: quillbuilduser/oracle-18-xe
ports:
- '127.0.0.1:1521:1521'
- '127.0.0.1:5500:5500'
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.14.0
environment:
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms128m -Xmx128m"
ports:
- "127.0.0.1:9200:9200"
rabbitmq:
image: rabbitmq:3.6-alpine
ports:
- "127.0.0.1:5672:5672"
qpid:
image: scholzj/qpid-cpp:1.38.0
command: -p 5673
environment:
- QPIDD_ADMIN_USERNAME=admin
- QPIDD_ADMIN_PASSWORD=admin
ports:
- "127.0.0.1:5673:5673"
memcached:
image: memcached:1.5-alpine
ports:
- "11211:11211"
cassandra:
image: spotify/cassandra
environment:
- CASSANDRA_TOKEN=-9223372036854775808
ports:
- "127.0.0.1:9042:9042"
limitd:
image: rochdev/limitd
environment:
- BUCKET_1_NAME=user
- BUCKET_1_SIZE=10
- BUCKET_1_PER_SECOND=5
ports:
- "127.0.0.1:9231:9231"
google-cloud-pubsub:
image: ridedott/pubsub-emulator
ports:
- "127.0.0.1:8081:8081"
localstack:
# TODO: Figure out why SNS doesn't work in >=1.2
# https://github.com/localstack/localstack/issues/7479
image: localstack/localstack:1.1.0
ports:
- "127.0.0.1:4566:4566" # Edge
environment:
- LOCALSTACK_SERVICES=dynamodb,kinesis,s3,sqs,sns,redshift,route53,logs,serverless
- EXTRA_CORS_ALLOWED_HEADERS=x-amz-request-id,x-amzn-requestid,x-amz-id-2
- EXTRA_CORS_EXPOSE_HEADERS=x-amz-request-id,x-amzn-requestid,x-amz-id-2
- AWS_DEFAULT_REGION=us-east-1
- FORCE_NONINTERACTIVE=true
- START_WEB=0
- LAMBDA_EXECUTOR=local
kafka:
image: debezium/kafka:1.7
ports:
- "127.0.0.1:9092:9092"
- "127.0.0.1:9093:9093"
environment:
- CLUSTER_ID=5Yr1SIgYQz-b-dgRabWx4g
- NODE_ID=1
- CREATE_TOPICS="test-topic:1:1"
- KAFKA_CONTROLLER_QUORUM_VOTERS=1@kafka:9093
- KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://127.0.0.1:9092
- KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS=0
opensearch:
image: opensearchproject/opensearch:2
environment:
- plugins.security.disabled=true
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms128m -Xmx128m"
ports:
- "127.0.0.1:9201:9200"
openldap:
image: bitnami/openldap:latest
ports:
- '127.0.0.1:1389:1389'
- '127.0.0.1:1636:1636'
environment:
- LDAP_ADMIN_USERNAME=admin
- LDAP_ADMIN_PASSWORD=adminpassword
- LDAP_USERS=user01,user02
- LDAP_PASSWORDS=password1,password2
testagent:
image: ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:latest
ports:
- "127.0.0.1:9126:9126"
environment:
- LOG_LEVEL=DEBUG
- TRACE_LANGUAGE=javascript
- DISABLED_CHECKS=trace_content_length
- PORT=9126