-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
62 lines (55 loc) · 1.3 KB
/
docker-compose.yml
File metadata and controls
62 lines (55 loc) · 1.3 KB
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
services:
superlink:
build: ./superlink
command: --insecure --fleet-api-type rest
ports:
- "9091:9091"
- "9092:9092"
- "9093:9093"
supernode1:
build: ./supernode
command: >
--insecure
--superlink http://proxy:8080
--node-config "partition-id=0 num-partitions=2"
--clientappio-api-address 0.0.0.0:9094
--isolation process
--rest
depends_on:
- superlink
supernode2:
build: ./supernode
command: >
--insecure
--superlink http://proxy:8080
--node-config "partition-id=0 num-partitions=2"
--clientappio-api-address 0.0.0.0:9095
--isolation process
--rest
depends_on:
- superlink
superexec-central:
build: docker-test
command: >
--insecure
--plugin-type serverapp
--appio-api-address http://superlink:9091
superexec-client1:
build: docker-test
command: >
--insecure
--plugin-type clientapp
--appio-api-address supernode1:9094
superexec-client2:
build: docker-test
command: >
--insecure
--plugin-type clientapp
--appio-api-address supernode2:9095
proxy:
build: ./proxy
environment:
- "FLASK_SUPERLINK=http://superlink:9095"
- "FLASK_DEBUG=True"
depends_on:
- superlink