-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdocker-compose.yml
46 lines (45 loc) · 1.01 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
services:
publisher-agent:
build:
context: .
dockerfile: Dockerfile
args:
SERVICE: "publisher_agent"
command:
[
"start",
"-c",
"/etc/pull_config.json",
"-k",
"/etc/keys.json",
]
volumes:
- "./path-to-pull-config.json:/etc/pull_config.json"
- "./path-to-keys.json:/etc/keys.json"
evm-pusher:
build:
context: .
dockerfile: Dockerfile
args:
SERVICE: "chain_pusher"
command:
[
"evm",
"-w",
"wss://api.jp.stork-oracle.network",
"-a",
"your-stork-api-key",
"-c",
"https://test-rpc.plumenetwork.xyz",
"-x",
"0xacc0a0cf13571d30b4b8637996f5d6d774d4fd62",
"-f",
"/etc/asset-config.yaml",
"-m",
"/etc/private-key.secret",
"-b",
"5",
]
volumes:
- "./path-to-asset-config.yaml:/etc/asset-config.yaml"
- "./path-to-private-key.secret:/etc/private-key.secret"