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
version: '3.8'
services:
test-python:
build:
context: ..
dockerfile: docker/Dockerfile.python
volumes:
- ../sdks/python:/sdk
test-javascript:
build:
context: ..
dockerfile: docker/Dockerfile.javascript
volumes:
- ../sdks/javascript:/sdk
test-go:
build:
context: ..
dockerfile: docker/Dockerfile.go
volumes:
- ../sdks/go:/sdk
test-java:
build:
context: ..
dockerfile: docker/Dockerfile.java
volumes:
- ../sdks/java:/sdk
test-csharp:
build:
context: ..
dockerfile: docker/Dockerfile.csharp
volumes:
- ../sdks/csharp:/sdk
test-cpp:
build:
context: ..
dockerfile: docker/Dockerfile.cpp
volumes:
- ../sdks/cpp:/sdk
test-kotlin:
build:
context: ..
dockerfile: docker/Dockerfile.kotlin
volumes:
- ../sdks/kotlin:/sdk