-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathheimdall.yml
More file actions
47 lines (43 loc) · 1.07 KB
/
heimdall.yml
File metadata and controls
47 lines (43 loc) · 1.07 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
version: '3.4'
services:
rabbitmq:
container_name: rabbitmq
image: rabbitmq:3-alpine
ports:
- "5672:5672" # RabbitMQ
restart: unless-stopped
heimdalld:
container_name: heimdalld
image: vlddm/heimdall:v0.2.1-mainnet
#build: heimdall
restart: unless-stopped
volumes:
- /data/polygon/heimdall:/root/.heimdalld
ports:
- "26656:26656" # P2P (TCP)
- "127.0.0.1:26657:26657" # RPC (TCP)
depends_on:
- rabbitmq
command:
- heimdalld
- start
- --moniker=MyNodeName
- --p2p.laddr=tcp://0.0.0.0:26656
- --rpc.laddr=tcp://0.0.0.0:26657
heimdall-rest-server:
container_name: heimdall-rest-server
image: vlddm/heimdall:v0.2.1-mainnet
#build: heimdall
restart: unless-stopped
volumes:
- /data/polygon/heimdall:/root/.heimdalld
ports:
- "127.0.0.1:1317:1317" # Heimdall REST API
depends_on:
- heimdalld
command:
- heimdalld
- rest-server
- --chain-id=137
- --laddr=tcp://0.0.0.0:1317
- --node=tcp://heimdalld:26657