-
Notifications
You must be signed in to change notification settings - Fork 11
/
docker-compose-custom.yml
68 lines (67 loc) · 1.33 KB
/
docker-compose-custom.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
version: "3"
services:
node-1:
image: dhxdocker/datahighway:latest
env_file:
- .env
ports:
- 30333:30333
- 9944:9944
- 9933:9933
volumes:
- ./scripts:/dhx/node/scripts
restart: always
entrypoint:
- ./docker-entrypoint-node-1.sh
node-2:
image: dhxdocker/datahighway:latest
env_file:
- .env
ports:
- 30334:30333
- 9945:9944
- 9934:9933
volumes:
- ./scripts:/dhx/node/scripts
restart: always
entrypoint:
- ./docker-entrypoint-node-2.sh
node-3:
image: dhxdocker/datahighway:latest
env_file:
- .env
ports:
- 30335:30333
- 9946:9944
- 9935:9933
volumes:
- ./scripts:/dhx/node/scripts
restart: always
entrypoint:
- ./docker-entrypoint-node-3.sh
node-4:
image: dhxdocker/datahighway:latest
env_file:
- .env
ports:
- 30336:30333
- 9947:9944
- 9936:9933
volumes:
- ./scripts:/dhx/node/scripts
restart: always
entrypoint:
- ./docker-entrypoint-node-4.sh
node-5:
image: dhxdocker/datahighway:latest
env_file:
- .env
ports:
- 30337:30333
- 9948:9944
- 9937:9933
volumes:
- ./scripts:/dhx/node/scripts
restart: always
entrypoint:
- ./docker-entrypoint-node-5.sh