forked from hwwhww/docker-pyeth-dev
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Makefile
39 lines (36 loc) · 1.37 KB
/
Makefile
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
current_dir = $(shell pwd)
keystore_path := ./validator/data/config/keystore
pwd_path := ./validator/data/config/password.txt
new-account:
bash ./utils/new-account.sh $(keystore_path) $(pwd_path) $(current_dir)
# Defaults
bootstrap_node?=enode://d3260a710a752b926bb3328ebe29bfb568e4fb3b4c7ff59450738661113fb21f5efbdf42904c706a9f152275890840345a5bc990745919eeb2dfc2c481d778ee@54.167.247.63:30303
bootstrap_uri?=http://54.167.247.63:8545
log_config?=eth.chain:info,eth.chainservice:info,eth.validator:info
account?=1
mine_percent?=0
validator_name?=validator
# Deposit and logout commands if given
ifneq ($(strip $(deposit)),)
_deposit=--deposit ${deposit}
endif
ifeq ($(validate),true)
_validate=--validate ${account}
endif
ifeq ($(logout),true)
_logout=--logout
endif
# Join network if given
ifneq ($(strip $(network_name)),)
network=--network ${network_name}
endif
run-node:
docker build ./validator -t casper-validator
@echo "\n🌟👻 Starting node! 👻🌟\n"
docker run -it --name ${validator_name} \
-v $(current_dir)/validator/data/config:/root/.config/pyethapp \
-v $(current_dir)/validator/data/log:/root/log \
${network} \
casper-validator \
pyethapp -m ${mine_percent} --unlock ${account} ${_validate} ${_deposit} ${_logout} --password /root/.config/pyethapp/password.txt -l ${log_config} --log-file /root/log/log.txt -b ${bootstrap_node} run
docker logs -f ${validator_name}