-
Notifications
You must be signed in to change notification settings - Fork 682
/
Copy pathdocker-compose.yml
49 lines (48 loc) · 1.25 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
version: '3'
services:
otmongo:
ports:
- "27017:27017"
image: mongo:latest
otmysql:
ports:
- "3306:3306"
image: mysql:latest
restart: always
environment:
MYSQL_USER: testuser
MYSQL_PASSWORD: testpassword
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
MYSQL_DATABASE: opentelemetry-tests
otpostgres:
image: postgres
ports:
- "5432:5432"
environment:
POSTGRES_USER: testuser
POSTGRES_PASSWORD: testpassword
POSTGRES_DB: opentelemetry-tests
otredis:
image: redis:4.0-alpine
ports:
- "127.0.0.1:6379:6379"
otjaeger:
image: jaegertracing/all-in-one:1.8
environment:
COLLECTOR_ZIPKIN_HTTP_PORT: "9411"
ports:
- "5775:5775/udp"
- "6831:6831/udp"
- "6832:6832/udp"
- "5778:5778"
- "16686:16686"
- "14268:14268"
- "9411:9411"
otmssql:
image: mcr.microsoft.com/mssql/server:2017-latest
ports:
- "1433:1433"
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "yourStrong(!)Password"
command: /bin/sh -c "sleep 10s && /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P yourStrong\(!\)Password -d master -Q 'CREATE DATABASE [opentelemetry-tests]' & /opt/mssql/bin/sqlservr"