-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yml
52 lines (47 loc) · 1.17 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
version: '3'
services:
axon1:
container_name: axon1
# build: .
image: axon:v1
restart: always
privileged: true
# ports:
# - 8432:5432
volumes:
- ./devtools:/app/devtools
networks:
- axon-net
command: ./axon -c=/app/devtools/config/node_1.toml -g=/app/devtools/config/genesis_four_nodes.json
axon2:
container_name: axon2
image: axon:v1
restart: always
privileged: true
volumes:
- ./devtools:/app/devtools
networks:
- axon-net
command: ./axon -c=/app/devtools/config/node_2.toml -g=/app/devtools/config/genesis_four_nodes.json
axon3:
container_name: axon3
image: axon:v1
restart: always
privileged: true
volumes:
- ./devtools:/app/devtools
networks:
- axon-net
command: ./axon -c=/app/devtools/config/node_3.toml -g=/app/devtools/config/genesis_four_nodes.json
axon4:
container_name: axon4
image: axon:v1
restart: always
privileged: true
volumes:
- ./devtools:/app/devtools
networks:
- axon-net
command: ./axon -c=/app/devtools/config/node_4.toml -g=/app/devtools/config/genesis_four_nodes.json
networks:
axon-net: