drop -it options for call with --exec
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
0eb55e9bca
commit
d0bb1d50bb
|
@ -2,5 +2,5 @@
|
|||
if [[ -z "$@" ]]; then
|
||||
docker exec -it {{ faucet_geth_name }} geth attach http://localhost:{{ faucet_geth_rpc_port }}
|
||||
else
|
||||
docker exec -it {{ faucet_geth_name }} geth attach http://localhost:{{ faucet_geth_rpc_port }} --exec "$@"
|
||||
docker exec {{ faucet_geth_name }} geth attach http://localhost:{{ faucet_geth_rpc_port }} --exec "$@"
|
||||
fi
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
if [[ -z "$@" ]]; then
|
||||
docker exec -it {{ miner_cont_name }} geth attach http://localhost:{{ miner_rpc_port }}
|
||||
else
|
||||
docker exec -it {{ miner_cont_name }} geth attach http://localhost:{{ miner_rpc_port }} --exec "$@"
|
||||
docker exec {{ miner_cont_name }} geth attach http://localhost:{{ miner_rpc_port }} --exec "$@"
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue