forked from DataDog/dd-trace-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
173 lines (157 loc) · 4.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
version: '3'
services:
redis:
image: redis:4-alpine
command: redis-server --bind 0.0.0.0
ports:
- "127.0.0.1:6379: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"
sqlserver:
image: microsoft/mssql-server-linux:latest
ports:
- "127.0.0.1:1433:1433"
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=Strong!Passw0rd
build:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: /project/docker/build.sh
volumes:
- ./:/project
package:
build:
context: ./
dockerfile: ./docker/package.dockerfile
image: datadog-package
command: /project/docker/package.sh
volumes:
- ./:/project
Datadog.Trace.ClrProfiler.Native:
build:
context: ./
dockerfile: ./docker/native.dockerfile
image: datadog-native
command: /project/docker/Datadog.Trace.ClrProfiler.Native.sh
volumes:
- ./:/project
Samples.RedisCore:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it redis:6379 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.RedisCore/bin/Release/netcoreapp2.1/publish/Samples.RedisCore.dll"
volumes:
- ./:/project
environment:
- REDIS_HOST=redis
depends_on:
- redis
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/Release/netcoreapp2.1/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:9205 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.Elasticsearch.V5/bin/Release/netcoreapp2.1/publish/Samples.Elasticsearch.V5.dll"
volumes:
- ./:/project
environment:
- ELASTICSEARCH5_HOST=elasticsearch5:9205
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/Release/netcoreapp2.1/publish/Samples.SqlServer.dll"
volumes:
- ./:/project
environment:
- SQLSERVER_CONNECTION_STRING=Server=sqlserver;Database=BlogDatabase;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/Release/netcoreapp2.1/publish/Samples.NpgSql.dll"
volumes:
- ./:/project
environment:
- POSTGRES_HOST=postgres
depends_on:
- postgres
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/Release/netcoreapp2.1/publish/Samples.MongoDB.dll"
volumes:
- ./:/project
depends_on:
- mongo
Datadog.Trace.ClrProfiler.IntegrationTests:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: /project/docker/Datadog.Trace.ClrProfiler.IntegrationTests.sh
volumes:
- ./:/project
environment:
- MONGO_HOST=mongo
- REDIS_HOST=redis
- ELASTICSEARCH6_HOST=elasticsearch6:9200
- ELASTICSEARCH5_HOST=elasticsearch5:9205
- SQLSERVER_CONNECTION_STRING=Server=sqlserver;Database=BlogDatabase;User=sa;Password=Strong!Passw0rd
- POSTGRES_HOST=postgres
depends_on:
- redis
- elasticsearch6
- elasticsearch5
- sqlserver
- mongo
- postgres