-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (30 loc) · 1.08 KB
/
docker-compose.yml
File metadata and controls
32 lines (30 loc) · 1.08 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
services:
miner_node:
image: blockdagnetwork/awakening:v0.0.3
container_name: blockdag-miner-testnet
restart: unless-stopped
ports:
- "38131:38131"
- "18545:18545"
- "18546:18546"
- "18150:18150"
volumes:
- bdag_bin:/opt/bdag
- ./bin/bdag/data:/bdag/data
- ./bin/bdag/logs:/bdag/logs
environment:
NODE_ARGS: >-
--testnet --rpclisten=0.0.0.0:38131 --notls --rpcuser=test --rpcpass=test
--miner
--evmenv="--http --http.port=18545 --http.addr=0.0.0.0
--http.api=net,web3,eth,bdag,txpool,debug --allow-insecure-unlock --ws
--ws.addr=0.0.0.0 --ws.port=18546 --rpc.allow-unprotected-txs --gcmode=archive"
--miningaddr=${MINING_ADDRESS} --generate --datadir=/bdag/data
--addpeer=/ip4/13.245.135.249/tcp/18150/p2p/16Uiu2HAm3hjo65MZvBEJuVASMoSDsXfMzC8m2ZEAeK8CjjJkRvf9
RPC_URL: ws://127.0.0.1:18546
CONTRACT_ADDRESS: 0x96C22c86B91235165eBF1F0f41FbeadA9C323A7A
ROLLOUT_WINDOW: 30m
CONTRACT_DEPLOY_BLOCK: 257509
HEALTH_MIN_PEERS: 1
volumes:
bdag_bin: {}