-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yaml
95 lines (86 loc) · 1.53 KB
/
compose.yaml
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
services:
player1:
build: ./blue
tty: true
ports:
- "21022:22"
- "21080:80"
networks:
ochakai-network:
ipv4_address: 172.18.0.11
player2:
build: ./blue
tty: true
ports:
- "22022:22"
- "22080:80"
networks:
ochakai-network:
ipv4_address: 172.18.0.12
player3:
build: ./blue
tty: true
ports:
- "23022:22"
- "23080:80"
networks:
ochakai-network:
ipv4_address: 172.18.0.13
player4:
build: ./blue
tty: true
ports:
- "24022:22"
- "24080:80"
networks:
ochakai-network:
ipv4_address: 172.18.0.14
player5:
build: ./blue
tty: true
ports:
- "25022:22"
- "25080:80"
networks:
ochakai-network:
ipv4_address: 172.18.0.15
player6:
build: ./blue
tty: true
ports:
- "26022:22"
- "26080:80"
networks:
ochakai-network:
ipv4_address: 172.18.0.16
player7:
build: ./blue
tty: true
ports:
- "27022:22"
- "27080:80"
networks:
ochakai-network:
ipv4_address: 172.18.0.17
red:
build: ./red
tty: true
ports:
- "5555:5555"
networks:
ochakai-network:
ipv4_address: 172.18.0.18
score-server:
build: ./score-server
tty: true
ports:
- "3000:3000"
networks:
ochakai-network:
ipv4_address: 172.18.0.19
networks:
ochakai-network:
driver: bridge
ipam:
config:
- subnet: 172.18.0.0/16