add support for geth_extra_flags list
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
682b6ffeb3
commit
8d2eeb8961
|
@ -61,6 +61,8 @@ geth_v5disc_enabled: true
|
||||||
# List of trusted peers to connect to
|
# List of trusted peers to connect to
|
||||||
geth_trusted_peers: []
|
geth_trusted_peers: []
|
||||||
geth_trusted_peers_file: '{{ geth_cont_vol }}/data/trusted-nodes.json'
|
geth_trusted_peers_file: '{{ geth_cont_vol }}/data/trusted-nodes.json'
|
||||||
|
# Any additional flags you want to provide
|
||||||
|
geth_extra_flags: []
|
||||||
|
|
||||||
# Custom bootnodes
|
# Custom bootnodes
|
||||||
geth_bootnodes: []
|
geth_bootnodes: []
|
||||||
|
|
|
@ -82,3 +82,6 @@ services:
|
||||||
--datadir=/data
|
--datadir=/data
|
||||||
--password=/keys/account.pass
|
--password=/keys/account.pass
|
||||||
--keystore=/keys
|
--keystore=/keys
|
||||||
|
{% for extra_flag in geth_extra_flags %}
|
||||||
|
{{ extra_flag }}
|
||||||
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in New Issue