-
Notifications
You must be signed in to change notification settings - Fork 502
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
269 lines (260 loc) · 9.1 KB
/
docker-compose.yml
File metadata and controls
269 lines (260 loc) · 9.1 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
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
# remember to use this compose file __ONLY__ for development/testing purposes
services:
elasticsearch:
image: elasticsearch:7.17.13
environment:
- discovery.type=single-node
- xpack.security.enabled=false
ports:
- "127.0.0.1:9200:9200"
opensearch:
image: opensearchproject/opensearch:1.3.6
environment:
- "DISABLE_SECURITY_PLUGIN=true"
- "discovery.type=single-node"
ports:
- "127.0.0.1:9201:9200"
cassandra:
image: cassandra:3.11.7
environment:
- MAX_HEAP_SIZE=512M
- HEAP_NEWSIZE=256M
ports:
- "127.0.0.1:9042:9042"
consul:
image: consul:1.6.0
ports:
- "127.0.0.1:8500:8500"
postgres:
image: postgres:12-alpine
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
- POSTGRES_DB=postgres
ports:
- "127.0.0.1:5432:5432"
mariadb:
image: mariadb:lts
environment:
- MYSQL_ROOT_PASSWORD=example
- MYSQL_DATABASE=test
- MYSQL_USER=test
- MYSQL_PASSWORD=test
ports:
- "127.0.0.1:3306:3306"
mysql:
image: mysql:5.7
platform: linux/amd64
environment:
- MYSQL_ROOT_PASSWORD=admin
- MYSQL_PASSWORD=test
- MYSQL_USER=test
- MYSQL_DATABASE=test
ports:
- "127.0.0.1:3306:3306"
redis:
image: redis:4.0-alpine
ports:
- "127.0.0.1:6379:6379"
kafka:
platform: linux/arm64
image: apache/kafka:3.8.0
ports:
- "127.0.0.1:29092:29092"
environment:
- ALLOW_PLAINTEXT_LISTENER=yes
- KAFKA_LISTENERS=PLAINTEXT://:9092,CONTROLLER://:9093,EXTERNAL://:29092
- KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://kafka:9092,EXTERNAL://localhost:29092
- KAFKA_LISTENER_SECURITY_PROTOCOL_MAP=CONTROLLER:PLAINTEXT,EXTERNAL:PLAINTEXT,PLAINTEXT:PLAINTEXT
- KAFKA_NODE_ID=1
- KAFKA_INTER_BROKER_LISTENER_NAME=PLAINTEXT
- KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR=1
- CLUSTER_ID=5L6g3nShT-eMCtK--X86sw
- KAFKA_PROCESS_ROLES=broker,controller
- KAFKA_CONTROLLER_QUORUM_VOTERS=1@kafka:9093
- KAFKA_CONTROLLER_LISTENER_NAMES=CONTROLLER
rediscluster:
platform: linux/amd64
image: grokzen/redis-cluster:6.2.0
environment:
- IP=0.0.0.0
ports:
- "127.0.0.1:7000:7000"
- "127.0.0.1:7001:7001"
- "127.0.0.1:7002:7002"
- "127.0.0.1:7003:7003"
- "127.0.0.1:7004:7004"
- "127.0.0.1:7005:7005"
mongo:
image: mongo:4.4
ports:
- "127.0.0.1:27017:27017"
memcached:
image: memcached:1.5-alpine
ports:
- "127.0.0.1:11211:11211"
moto:
image: motoserver/moto:5.1.0
environment:
- MOTO_PORT=3000
ports:
- "127.0.0.1:3000:3000"
rabbitmq:
image: rabbitmq:3.7-alpine
ports:
- "127.0.0.1:5672:5672"
ddagent:
image: datadog/agent:latest
environment:
- DD_HOSTNAME=github-actions-worker
- DD_BIND_HOST=0.0.0.0
- DD_REMOTE_CONFIGURATION_ENABLED=true
- DD_SITE=${DD_SITE-datadoghq.com}
- DD_API_KEY=${DD_API_KEY-invalid_but_this_is_fine}
- DD_REMOTE_CONFIGURATION_KEY=${DD_REMOTE_CONFIGURATION_KEY-invalid_but_this_is_fine}
- DD_REMOTE_CONFIGURATION_REFRESH_INTERVAL=5s
- DD_APM_RECEIVER_SOCKET=/tmp/ddagent/trace.sock
- DD_DOGSTATSD_NON_LOCAL_TRAFFIC=true
ports:
- 8126:8126
- 8125:8125/udp
volumes:
- ddagent:/tmp/ddagent:rw
testagent:
image: ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.43.0
ports:
- "127.0.0.1:${TESTAGENT_HOST_PORT:-9126}:8126"
volumes:
- ./tests/snapshots:/snapshots
- ./tests/llmobs/llmobs_cassettes:/cassettes
environment:
- LOG_LEVEL=WARNING
- SNAPSHOT_DIR=/snapshots
- VCR_CASSETTES_DIRECTORY=/cassettes
- VCR_PROVIDER_MAP=azure_openai=https://llmobs-test-resource.openai.azure.com/
- SNAPSHOT_CI=0
- DD_POOL_TRACE_CHECK_FAILURES=true
- DD_DISABLE_ERROR_RESPONSES=true
- ENABLED_CHECKS=trace_content_length,trace_stall,meta_tracer_version_header,trace_count_header,trace_peer_service,trace_dd_service
- SNAPSHOT_IGNORED_ATTRS=span_id,trace_id,parent_id,duration,start,metrics.system.pid,metrics.system.process_id,metrics.process_id,meta.runtime-id,meta._dd.p.tid,meta.pathway.hash,metrics._dd.tracer_kr,meta._dd.parent_id,meta.kafka.cluster_id,meta._dd.git.repository_url,meta._dd.svc_src
vertica:
image: vertica/vertica-ce
environment:
- VP_TEST_USER=dbadmin
- VP_TEST_PASSWORD=abc123
- VP_TEST_DATABASE=docker
ports:
- "127.0.0.1:5433:5433"
azurecosmosemulator:
image: mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:vnext-preview
ports:
- "127.0.0.1:8081:8081"
- "127.0.0.1:8080:8080"
- "127.0.0.1:1234:1234"
environment:
ACCEPT_EULA: "Y"
BLOB_SERVER: azurite
METADATA_SERVER: azurite
azureeventhubsemulator:
image: mcr.microsoft.com/azure-messaging/eventhubs-emulator:2.1.0
ports:
- "127.0.0.1:5672:5672"
- "127.0.0.1:9092:9092"
- "127.0.0.1:5300:5300"
environment:
ACCEPT_EULA: "Y"
BLOB_SERVER: azurite
METADATA_SERVER: azurite
azureservicebusemulator:
image: mcr.microsoft.com/azure-messaging/servicebus-emulator:1.1.2
ports:
- "127.0.0.1:5672:5672"
- "127.0.0.1:5300:5300"
environment:
ACCEPT_EULA: "Y"
MSSQL_SA_PASSWORD: "Localtestpass1!"
SQL_SERVER: dd-trace-py-azuresqledge-1
azuresqledge:
image: mcr.microsoft.com/azure-sql-edge:1.0.7
ports:
- "127.0.0.1:1433:1433"
environment:
ACCEPT_EULA: "Y"
MSSQL_SA_PASSWORD: "Localtestpass1!"
azurite:
image: mcr.microsoft.com/azure-storage/azurite:3.34.0
ports:
- "127.0.0.1:10000:10000"
- "127.0.0.1:10001:10001"
- "127.0.0.1:10002:10002"
testrunner:
# DEV uncomment to test local changes to the Dockerfile
# build:
# context: ./docker
# dockerfile: Dockerfile
image: ghcr.io/datadog/dd-trace-py/testrunner:ff9ade698ee5f3f3dc6e551ed18d41aba55da58d
command: bash
# Resource limits: defaults to 0 (unlimited, uses all available system resources)
# Set DD_TEST_CPUS (e.g., "4") and DD_TEST_MEMORY (e.g., "8g") to apply limits
cpus: "${DD_TEST_CPUS:-0}"
mem_limit: "${DD_TEST_MEMORY:-0}"
cap_add:
- SYS_PTRACE
- SYS_ADMIN
environment:
DD_FAST_BUILD: "1"
CMAKE_BUILD_PARALLEL_LEVEL: "12"
CARGO_BUILD_JOBS: "12"
CYTHON_CACHE_DIR: "/home/bits/.cache/cython"
DD_USE_SCCACHE: "1"
SCCACHE_DIR: "/home/bits/.cache/sccache"
DD_PROFILING_MEMALLOC_ASSERT_ON_REENTRY: "1"
network_mode: host
userns_mode: host
working_dir: /home/bits/project/
volumes:
- ddagent:/tmp/ddagent
- ${DD_TEST_CACHE_DIR:-./.cache}:/home/bits/.cache
- ./:/home/bits/project
localstack:
image: localstack/localstack:1.4.0
ports:
- "127.0.0.1:4566:4566"
- "127.0.0.1:4571:4571"
environment:
- SERVICES=${SERVICES- }
- DEBUG=${DEBUG- }
- LAMBDA_EXECUTOR=local
- KINESIS_ERROR_PROBABILITY=${KINESIS_ERROR_PROBABILITY- }
- DOCKER_HOST=unix:///var/run/docker.sock
volumes:
- "${TMPDIR:-/var/lib/localstack}:/var/lib/localstack"
- "/var/run/docker.sock:/var/run/docker.sock"
httpbin:
image: kennethreitz/httpbin@sha256:2c7abc4803080c22928265744410173b6fea3b898872c01c5fd0f0f9df4a59fb
platform: linux/amd64
ports:
- "127.0.0.1:8001:80"
valkey:
image: valkey/valkey:8.0-alpine
ports:
- "127.0.0.1:6379:6379"
pubsub:
image: google/cloud-sdk:557.0.0-emulators
command: gcloud beta emulators pubsub start --host-port=0.0.0.0:8085
ports:
- "127.0.0.1:8085:8085"
valkeycluster:
platform: linux/amd64
image: grokzen/redis-cluster:6.2.0
environment:
- IP=0.0.0.0
ports:
- "127.0.0.1:7000:7000"
- "127.0.0.1:7001:7001"
- "127.0.0.1:7002:7002"
- "127.0.0.1:7003:7003"
- "127.0.0.1:7004:7004"
- "127.0.0.1:7005:7005"
volumes:
ddagent: