docker: sort vhosts and bootnodes
To avoid unnecessary restarts. Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
773c384dcc
commit
dcc07cdefe
|
@ -60,7 +60,7 @@ services:
|
||||||
--http
|
--http
|
||||||
--http.addr=0.0.0.0
|
--http.addr=0.0.0.0
|
||||||
--http.port={{ geth_rpc_port }}
|
--http.port={{ geth_rpc_port }}
|
||||||
--http.vhosts={{ geth_rpc_vhosts | join(",") }}
|
--http.vhosts={{ geth_rpc_vhosts | sort | join(",") }}
|
||||||
--http.api={{ geth_rcp_api }}
|
--http.api={{ geth_rcp_api }}
|
||||||
--ipcpath=/data/geth.ipc
|
--ipcpath=/data/geth.ipc
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -74,11 +74,11 @@ services:
|
||||||
{% if geth_authrpc_enabled %}
|
{% if geth_authrpc_enabled %}
|
||||||
--authrpc.addr=0.0.0.0
|
--authrpc.addr=0.0.0.0
|
||||||
--authrpc.port={{ geth_authrpc_port }}
|
--authrpc.port={{ geth_authrpc_port }}
|
||||||
--authrpc.vhosts={{ geth_authrpc_vhosts | join(",") }}
|
--authrpc.vhosts={{ geth_authrpc_vhosts | sort | join(",") }}
|
||||||
--authrpc.jwtsecret=/keys/jwtsecret
|
--authrpc.jwtsecret=/keys/jwtsecret
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if (geth_bootnodes|length) > 0 %}
|
{% if (geth_bootnodes|length) > 0 %}
|
||||||
--bootnodes="{{ geth_bootnodes | join(',') }}"
|
--bootnodes="{{ geth_bootnodes | sort | join(',') }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
--nousb
|
--nousb
|
||||||
--verbosity={{ geth_log_level_id }}
|
--verbosity={{ geth_log_level_id }}
|
||||||
|
|
Loading…
Reference in New Issue