-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
81 lines (74 loc) · 1.64 KB
/
Copy pathdocker-compose.yml
File metadata and controls
81 lines (74 loc) · 1.64 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
x-witness: &witness
image: "harbor.colossi.network:4443/hcf/witness:latest"
restart: always
networks:
- dkms-network
services:
witness1:
container_name: keriox-witness1
<<: *witness
ports:
- "3232:3232"
volumes:
- type: bind
source: ./config/witness1.yml
target: /app/witness.yml
- witness1_db_data:/app/db
witness2:
container_name: keriox-witness2
<<: *witness
ports:
- "3233:3233"
volumes:
- type: bind
source: ./config/witness2.yml
target: /app/witness.yml
- witness2_db_data:/app/db/
witness3:
container_name: keriox-witness3
<<: *witness
ports:
- "3234:3234"
volumes:
- type: bind
source: ./config/witness3.yml
target: /app/witness.yml
- witness3_db_data:/app/db/
watcher:
container_name: keriox-watcher
image: "harbor.colossi.network:4443/hcf/watcher:latest"
restart: always
depends_on:
- witness1
- witness2
- witness3
ports:
- "3235:3235"
volumes:
- type: bind
source: ./config/watcher.yml
target: /app/watcher.yml
- watcher_db_data:/app/db/
networks:
- dkms-network
mesagkesto:
container_name: mesagkesto
image: "harbor.colossi.network:4443/hcf/mesagkesto:latest"
restart: always
depends_on:
- watcher
ports:
- "3236:3236"
volumes:
- type: bind
source: ./config/messagebox.yml
target: /app/messagebox.yml
networks:
- dkms-network
networks:
dkms-network:
volumes:
witness1_db_data:
witness2_db_data:
witness3_db_data:
watcher_db_data: