forked from DataDog/dd-trace-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
161 lines (155 loc) · 4.68 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
version: "3"
# remember to use this compose file __ONLY__ for development/testing purposes
services:
elasticsearch:
image: elasticsearch:2.4-alpine
ports:
- "127.0.0.1:9200: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:10.5-alpine
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
- POSTGRES_DB=postgres
ports:
- "127.0.0.1:5432:5432"
mariadb:
image: mariadb
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
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"
rediscluster:
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:3.6
ports:
- "127.0.0.1:27017:27017"
memcached:
image: memcached:1.5-alpine
ports:
- "127.0.0.1:11211:11211"
moto:
# container that executes mocked AWS services; this is a custom
# build that runs all of them in a single container. It is built
# using this fork: https://github.com/palazzem/moto/tree/palazzem/docker-service
image: datadog/docker-library:moto_1_0_1
ports:
- "127.0.0.1:5000:5000"
- "127.0.0.1:5001:5001"
- "127.0.0.1:5002:5002"
- "127.0.0.1:5003:5003"
- "127.0.0.1:5004:5004"
- "127.0.0.1:5005:5005"
rabbitmq:
image: rabbitmq:3.7-alpine
ports:
- "127.0.0.1:5672:5672"
ddagent5:
image: datadog/docker-dd-agent:latest
environment:
- DD_BIND_HOST=0.0.0.0
- DD_API_KEY=${DD_API_KEY-invalid_but_this_is_fine}
ports:
- "127.0.0.1:8126:8126"
ddagent:
image: datadog/agent:latest
environment:
- DD_BIND_HOST=0.0.0.0
- DD_API_KEY=${DD_API_KEY-invalid_but_this_is_fine}
- DD_APM_RECEIVER_SOCKET=/tmp/ddagent/trace.sock
ports:
- "127.0.0.1:8126:8126"
volumes:
- ddagent:/tmp/ddagent:rw
testagent:
image: ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:latest
ports:
- "127.0.0.1:9126:8126"
volumes:
- ./tests/snapshots:/snapshots
environment:
- LOG_LEVEL=WARNING
- SNAPSHOT_DIR=/snapshots
- SNAPSHOT_CI
vertica:
image: sumitchawla/vertica
environment:
- VP_TEST_USER=dbadmin
- VP_TEST_PASSWORD=abc123
- VP_TEST_DATABASE=docker
ports:
- "127.0.0.1:5433:5433"
testrunner:
image: datadog/dd-trace-py:buster
command: bash
environment:
- TOX_SKIP_DIST=True
network_mode: host
working_dir: /root/project/
volumes:
- ddagent:/tmp/ddagent
- ./:/root/project
- ./.ddtox:/root/project/.tox
- ./.ddriot:/root/project/.riot
localstack:
image: localstack/localstack:0.12.1
network_mode: bridge
ports:
- "127.0.0.1:4566:4566"
- "127.0.0.1:4571:4571"
environment:
- SERVICES=${SERVICES- }
- DEBUG=${DEBUG- }
- DATA_DIR=${DATA_DIR- }
- PORT_WEB_UI=${PORT_WEB_UI- }
- LAMBDA_EXECUTOR=local
- KINESIS_ERROR_PROBABILITY=${KINESIS_ERROR_PROBABILITY- }
- DOCKER_HOST=unix:///var/run/docker.sock
- HOST_TMP_FOLDER=${TMPDIR}
- INIT_SCRIPTS_PATH=/setup
volumes:
- "${TMPDIR:-/tmp/localstack}:/tmp/localstack"
- "/var/run/docker.sock:/var/run/docker.sock"
httpbin_local:
image: kennethreitz/httpbin@sha256:2c7abc4803080c22928265744410173b6fea3b898872c01c5fd0f0f9df4a59fb
ports:
- "127.0.0.1:8001:80"
volumes:
ddagent: