forked from Cardfree/teamcity-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
53 lines (53 loc) · 1.14 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
version: '2'
services:
api:
build: .
command: ./run-test.sh
api9:
build: .
depends_on:
- teamcity9
links:
- teamcity9
command: ./run-test.sh -host=teamcity9
teamcity9:
build: test9
ports:
- 8111:8111
volumes:
- ./test9/teamcity:/test-data
# agent9:
# image: jetbrains/teamcity-agent:9.1.7
# depends_on:
# - teamcity9
# links:
# - teamcity9
# environment:
# SERVER_URL: http://teamcity9:8111/
# volumes:
# - ./test9/agent:/data/teamcity_agent/conf
# - /var/run/docker.sock:/var/run/docker.sock
api10:
build: .
depends_on:
- teamcity10
links:
- teamcity10
command: ./run-test.sh -host=teamcity10
teamcity10:
build: test10
ports:
- 8112:8111
volumes:
- ./test10/teamcity:/test-data
# agent10:
# image: jetbrains/teamcity-agent:2017.1.4
# depends_on:
# - teamcity10
# links:
# - teamcity10
# environment:
# SERVER_URL: http://teamcity10:8111/
# volumes:
# - ./test10/agent:/data/teamcity_agent/conf
# - /var/run/docker.sock:/var/run/docker.sock