forked from MysticRyuujin/dappnode-polygon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
86 lines (86 loc) · 2.1 KB
/
Copy pathdocker-compose.yml
File metadata and controls
86 lines (86 loc) · 2.1 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
82
83
84
85
86
version: "3.4"
services:
rabbitmq:
container_name: rabbitmq
image: "rabbitmq:3-alpine"
ports:
- "5672"
restart: unless-stopped
heimdalld:
build: &ref_0
args:
UPSTREAM_VERSION: v0.2.4
context: ./build/heimdall
dockerfile: Dockerfile
volumes:
- "heimdall:/root/.heimdalld"
ports:
- "36656:26656"
- "36657:26657"
depends_on:
- rabbitmq
environment:
- MONIKER=DAPPNodler
- >-
SNAPSHOT_URL=https://matic-blockchain-snapshots.s3-accelerate.amazonaws.com/matic-mumbai/heimdall-snapshot-2021-12-09.tar.gz
- BOOTSTRAP=1
- "ETH1_RPC_URL=http://fullnode.dappnode:8545"
restart: unless-stopped
image: "heimdalld.polygon-mumbai.public.dappnode.eth:0.1.4"
heimdallr:
environment:
- REST_SERVER=1
- "ETH1_RPC_URL=http://fullnode.dappnode:8545"
build: *ref_0
volumes:
- "heimdall:/root/.heimdalld"
ports:
- "1317"
depends_on:
- heimdalld
restart: unless-stopped
image: "heimdallr.polygon-mumbai.public.dappnode.eth:0.1.4"
bor:
build:
args:
UPSTREAM_VERSION: v0.2.12-candidate
context: ./build/bor
dockerfile: Dockerfile
hostname: bor
environment:
- >-
SNAPSHOT_URL=https://matic-blockchain-snapshots.s3-accelerate.amazonaws.com/matic-mumbai/bor-fullnode-snapshot-2021-12-20.tar.gz
- BOOTSTRAP=1
volumes:
- "bor:/datadir"
ports:
- "10545:8545"
- "10546:8546"
- "40303:30303"
- "40303:30303/udp"
depends_on:
- heimdallr
restart: unless-stopped
image: "bor.polygon-mumbai.public.dappnode.eth:0.1.4"
nginx:
build:
context: ./build/nginx
dockerfile: Dockerfile
environment:
- INT_HTTP=8545
- EXT_HTTP=10645
- INT_WS=8546
- EXT_WS=10646
- AUTH_USER=admin
- AUTH_PASSWORD=12345
- WS_NAME=bor
ports:
- "10645:10645"
- "10646:10646"
depends_on:
- bor
restart: unless-stopped
image: "nginx.polygon-mumbai.public.dappnode.eth:0.1.4"
volumes:
heimdall: {}
bor: {}