specify geth IPC path

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-05-10 16:23:49 +02:00
parent 7f824bd841
commit fbf1b1b9fc
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
2 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,8 @@ geth_sync_check_script: '/usr/local/bin/check_geth_sync.sh'
geth_rpc_addr: '127.0.0.1'
geth_rpc_port: 8545
geth_rcp_api: 'eth,net,web3,personal,shh,admin'
# Alternative IPC socket
geth_ipc_path: '/data/geth.ipc'
# useful for linking containers
geth_extra_alias: geth
geth_aliases:

View File

@ -55,6 +55,7 @@
--rpcport={{ geth_rpc_port }}
--rpcvhosts={{ geth_aliases | join(",") }}
--rpcapi={{ geth_rcp_api }}
--ipcpath={{ geth_ipc_path }}
volumes:
- '{{ geth_cont_vol }}/keys:/keys:rw'
# WARNING: This assumes /data is mounted, see bootstrap role