From 2f633da341b6783d7136e2d0f07b2781733c018e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Z=C3=B6ller?= Date: Tue, 28 Aug 2018 11:40:00 +0200 Subject: [PATCH] Bugfix for #14 --- miner/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miner/Dockerfile b/miner/Dockerfile index b122cc9..62370a1 100644 --- a/miner/Dockerfile +++ b/miner/Dockerfile @@ -24,7 +24,7 @@ RUN ./geth account import --password ~/.accountpassword ~/.privatekey ENV address="" ENV bootnodeId="" ENV bootnodeIp="" -CMD exec ./geth --bootnodes "enode://$bootnodeId@$bootnodeIp:30301" --networkid="500" --verbosity=4 --rpc --rpcapi "eth,web3,personal,net,miner,admin,debug,db" --rpcaddr "0.0.0.0" --rpccorsdomain "*" --syncmode=full --mine --etherbase $address +CMD exec ./geth --bootnodes "enode://$bootnodeId@$bootnodeIp:30301" --networkid="500" --verbosity=4 --rpc --rpcapi "eth,web3,personal,net,miner,admin,debug,db" --rpcaddr "0.0.0.0" --rpccorsdomain "*" --syncmode=full --mine --etherbase $address --unlock $address --password ~/.accountpassword EXPOSE 8545 EXPOSE 30303