forked from DataDog/dd-trace-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
231 lines (210 loc) · 6.95 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
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
version: '3'
services:
servicestackredis:
image: redis:4-alpine
command: redis-server --bind 0.0.0.0
ports:
- "127.0.0.1:6379:6379"
stackexchangeredis:
image: redis:4-alpine
command: redis-server --bind 0.0.0.0
ports:
- "127.0.0.1:6389:6379"
mongo:
image: mongo:4.0.9
ports:
- "127.0.0.1:27017:27017"
command: mongod
elasticsearch6:
image: docker.elastic.co/elasticsearch/elasticsearch:6.4.2
ports:
- "127.0.0.1:9200:9200"
- "127.0.0.1:9300:9300"
environment:
- discovery.type=single-node
elasticsearch5:
image: docker.elastic.co/elasticsearch/elasticsearch:5.6.16
ports:
- "127.0.0.1:9205:9200"
- "127.0.0.1:9305:9300"
environment:
- discovery.type=single-node
postgres:
image: postgres:10.5-alpine
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
- POSTGRES_DB=postgres
ports:
- "127.0.0.1:5432:5432"
mysql:
image: mysql/mysql-server:5.7
environment:
- MYSQL_DATABASE=world
- MYSQL_ROOT_PASSWORD=mysqldb
- MYSQL_USER=mysqldb
- MYSQL_PASSWORD=mysqldb
ports:
- "127.0.0.1:3307:3306"
sqlserver:
image: mcr.microsoft.com/mssql/server:latest
ports:
- "127.0.0.1:1433:1433"
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=Strong!Passw0rd
wcfservice:
image: mcr.microsoft.com/dotnet/framework/wcf:4.8
ports:
- "127.0.0.1:8585:8585"
build:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
environment:
- buildConfiguration=${buildConfiguration}
- publishTargetFramework=${publishTargetFramework}
command: /project/docker/build.sh
volumes:
- ./:/project
package:
build:
context: ./
dockerfile: ./docker/package.dockerfile
image: datadog-package
command: /project/docker/package.sh
volumes:
- ./:/project
Profiler:
build:
context: ./
dockerfile: ./docker/native.dockerfile
image: datadog-native
command: /project/docker/Datadog.Trace.ClrProfiler.Native.sh
volumes:
- ./:/project
Samples.ServiceStack.Redis:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it servicestackredis:6379 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.ServiceStack.Redis/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.ServiceStack.Redis.dll"
volumes:
- ./:/project
environment:
- SERVICESTACK_REDIS_HOST=servicestackredis:6379
depends_on:
- servicestackredis
Samples.StackExchange.Redis:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it stackexchangeredis:6379 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.StackExchange.Redis/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.StackExchange.Redis.dll"
volumes:
- ./:/project
environment:
- STACKEXCHANGE_REDIS_HOST=stackexchangeredis:6379
depends_on:
- stackexchangeredis
Samples.Elasticsearch:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it elasticsearch6:9200 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.Elasticsearch/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.Elasticsearch.dll"
volumes:
- ./:/project
environment:
- ELASTICSEARCH6_HOST=elasticsearch6:9200
depends_on:
- elasticsearch6
Samples.Elasticsearch.V5:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it elasticsearch5:9200 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.Elasticsearch.V5/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.Elasticsearch.V5.dll"
volumes:
- ./:/project
environment:
- ELASTICSEARCH5_HOST=elasticsearch5:9200
depends_on:
- elasticsearch5
Samples.SqlServer:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it sqlserver:1433 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.SqlServer/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.SqlServer.dll"
volumes:
- ./:/project
environment:
- SQLSERVER_CONNECTION_STRING=Server=sqlserver;User=sa;Password=Strong!Passw0rd
depends_on:
- sqlserver
Samples.Npgsql:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it postgres:5432 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.NpgSql/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.NpgSql.dll"
volumes:
- ./:/project
environment:
- POSTGRES_HOST=postgres
depends_on:
- postgres
Samples.MySql:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it mysql:3306 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.MySql/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.MySql.dll"
volumes:
- ./:/project
environment:
- MYSQL_HOST=mysql
- MYSQL_PORT=3306
depends_on:
- mysql
Samples.MongoDB:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it mongo:27017 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.MongoDB/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.MongoDB.dll"
volumes:
- ./:/project
depends_on:
- mongo
IntegrationTests:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: /project/docker/Datadog.Trace.ClrProfiler.IntegrationTests.sh
volumes:
- ./:/project
environment:
- MONGO_HOST=mongo
- SERVICESTACK_REDIS_HOST=servicestackredis:6379
- STACKEXCHANGE_REDIS_HOST=stackexchangeredis:6379
- ELASTICSEARCH6_HOST=elasticsearch6:9200
- ELASTICSEARCH5_HOST=elasticsearch5:9200
- SQLSERVER_CONNECTION_STRING=Server=sqlserver;User=sa;Password=Strong!Passw0rd
- POSTGRES_HOST=postgres
- MYSQL_HOST=mysql
- MYSQL_PORT=3306
- buildConfiguration=${buildConfiguration}
- publishTargetFramework=${publishTargetFramework}
depends_on:
- servicestackredis
- stackexchangeredis
- elasticsearch6
- elasticsearch5
- sqlserver
- mongo
- postgres
- mysql