-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
45 lines (43 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
version: '3'
networks:
pledge-bridge:
services:
pledge-bridge-relayer0:
image: chainsafe/chainbridge:v1.1.5
container_name: relayer0
restart: always
environment:
- KEYSTORE_PASSWORD=pledge
command: --config /config/config.json --verbosity trace --blockstore /blockstore
volumes:
- ./config/config0.json:/config/config.json
- ./blockstore:/blockstore
- ./keys/0x100c8DA1f36e6f097778dA71ea6937bBF9f803fB.key:/keys/0x100c8DA1f36e6f097778dA71ea6937bBF9f803fB.key
networks:
- pledge-bridge
pledge-bridge-relayer1:
image: chainsafe/chainbridge:v1.1.5
container_name: relayer1
restart: always
environment:
- KEYSTORE_PASSWORD=pledge
command: --config /config/config.json --verbosity trace --blockstore /blockstore
volumes:
- ./config/config1.json:/config/config.json
- ./blockstore:/blockstore
- ./keys/0x4a9b6dd4F7180E30784657fA7e96151AFf71063A.key:/keys/0x4a9b6dd4F7180E30784657fA7e96151AFf71063A.key
networks:
- pledge-bridge
pledge-bridge-relayer2:
image: chainsafe/chainbridge:v1.1.5
container_name: relayer2
restart: always
environment:
- KEYSTORE_PASSWORD=pledge
command: --config /config/config.json --verbosity trace --blockstore /blockstore
volumes:
- ./config/config2.json:/config/config.json
- ./blockstore:/blockstore
- ./keys/0x1a1285b9c5B32F0ae2a45046571dB53092010169.key:/keys/0x1a1285b9c5B32F0ae2a45046571dB53092010169.key
networks:
- pledge-bridge