From 548fe1af4306d984c0ba82f161144c599a11fc23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Z=C3=B6ller?= Date: Fri, 24 Aug 2018 19:53:15 +0200 Subject: [PATCH] #14 - remove permanent unlocking for all nodes --- miner/Dockerfile | 2 +- node/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/miner/Dockerfile b/miner/Dockerfile index 9b791ef..433ae22 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 --rpcaddr "0.0.0.0" --rpccorsdomain "*" --syncmode=full --mine --etherbase $address --unlock $address --password ~/.accountpassword +CMD exec ./geth --bootnodes "enode://$bootnodeId@$bootnodeIp:30301" --networkid="500" --verbosity=4 --rpc --rpcaddr "0.0.0.0" --rpccorsdomain "*" --syncmode=full --mine --etherbase $address EXPOSE 8545 EXPOSE 30303 diff --git a/node/Dockerfile b/node/Dockerfile index 7db2e4a..84bec2f 100644 --- a/node/Dockerfile +++ b/node/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 --rpcaddr "0.0.0.0" --rpccorsdomain "*" --syncmode=full --etherbase $address --unlock $address --password ~/.accountpassword +CMD exec ./geth --bootnodes "enode://$bootnodeId@$bootnodeIp:30301" --networkid="500" --verbosity=4 --rpc --rpcaddr "0.0.0.0" --rpccorsdomain "*" --syncmode=full --etherbase $address EXPOSE 8545 EXPOSE 30303