-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
81 lines (73 loc) · 1.51 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
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
version: "3"
services:
ubuntu:
build: ./docker/ubuntu
container_name: ubuntu
networks:
- multichain
multichain-base:
build: ./docker/multichain-base
container_name: multichain-base
networks:
- multichain
links:
- ubuntu
india-primary-node:
build: ./docker/india-primary-node
container_name: india-primary-node
stdin_open: true
tty: true
#volumes:
# - "//c/docker-data-volumes/india-primary-node/multichain-data:/multichain-data"
networks:
- multichain
ports:
- "7447:7447"
- "7000:7000"
expose:
- 7447
- 7000
links:
- multichain-base
india-secondary-node:
build: ./docker/india-secondary-node
container_name: india-secondary-node
stdin_open: true
tty: true
networks:
- multichain
ports:
- "8447:8447"
- "8000:8000"
expose:
- 8447
- 8000
links:
- multichain-base
multichain-explorer:
build: ./docker/multichain-explorer
container_name: multichain-explorer
stdin_open: true
tty: true
networks:
- multichain
ports:
- "2750:2750"
expose:
- 2750
links:
- india-primary-node
multichain-web-demo:
build: ./docker/multichain-web-demo
container_name: multichain-web-demo
stdin_open: true
tty: true
networks:
- multichain
ports:
- "80:80"
links:
- india-primary-node
- india-secondary-node
networks:
multichain: