-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathdocker-compose.yml
57 lines (57 loc) · 1.41 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
53
54
55
56
57
version: "3.4"
services:
rabbitmq:
container_name: rabbitmq
image: "rabbitmq:3-alpine"
restart: unless-stopped
heimdalld:
build: &ref_0
args:
UPSTREAM_VERSION: v0.2.8
context: ./build/heimdall
dockerfile: Dockerfile
volumes:
- "heimdall:/root/.heimdalld"
ports:
- "26656:26656"
depends_on:
- rabbitmq
environment:
- MONIKER=
- SNAPSHOT_URL=https://matic-blockchain-snapshots.s3-accelerate.amazonaws.com/matic-mainnet/heimdall-snapshot-pre-v0.2.8hardfork2022-03-17.tar.gz
- BOOTSTRAP=1
- ETH1_RPC_URL=http://fullnode.dappnode:8545
- BOOTNODES=
restart: unless-stopped
heimdallr:
environment:
- REST_SERVER=1
- ETH1_RPC_URL=http://fullnode.dappnode:8545
build: *ref_0
volumes:
- "heimdall:/root/.heimdalld"
depends_on:
- heimdalld
restart: unless-stopped
bor:
build:
args:
UPSTREAM_VERSION: v0.2.14-tmp-span-hotfix
context: ./build/bor
dockerfile: Dockerfile
environment:
- SNAPSHOT_URL=https://matic-blockchain-snapshots.s3-accelerate.amazonaws.com/matic-mainnet/bor-pruned-snapshot-2022-03-13.tar.gz
- BOOTSTRAP=1
- MAXPEERS=
volumes:
- "bor:/datadir"
ports:
- "40303:40303"
- "40303:40303/udp"
depends_on:
- heimdallr
restart: unless-stopped
volumes:
rabbitmq: []
heimdall: {}
bor: {}