File tree 10 files changed +12
-1
lines changed
10 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 27
27
volumes : " {{ besu_container_volumes }}"
28
28
env : " {{ besu_container_env }}"
29
29
networks : " {{ besu_container_networks }}"
30
+ entrypoint : " {{ besu_container_entrypoint | default(omit) }}"
30
31
command : " {{ besu_container_command + besu_container_command_extra_args }}"
31
32
user : " {{ besu_user_meta.uid }}"
32
33
pull : " {{ besu_container_pull | bool }}"
Original file line number Diff line number Diff line change 54
54
volumes : " {{ erigon_container_volumes }}"
55
55
env : " {{ erigon_container_env }}"
56
56
networks : " {{ erigon_container_networks }}"
57
- entrypoint : " {{ erigon_container_entrypoint }}"
57
+ entrypoint : " {{ erigon_container_entrypoint | default(omit) }}"
58
58
command : " {{ erigon_container_command + erigon_container_command_extra_args }}"
59
59
user : " {{ erigon_user_meta.uid }}"
60
60
pull : " {{ erigon_container_pull | bool }}"
Original file line number Diff line number Diff line change 27
27
volumes : " {{ ethereumjs_container_volumes }}"
28
28
env : " {{ ethereumjs_container_env }}"
29
29
networks : " {{ ethereumjs_container_networks }}"
30
+ entrypoint : " {{ ethereumjs_container_entrypoint | default(omit) }}"
30
31
command : " {{ ethereumjs_container_command + ethereumjs_container_command_extra_args }}"
31
32
user : " {{ ethereumjs_user_meta.uid }}"
32
33
pull : " {{ ethereumjs_container_pull | bool }}"
Original file line number Diff line number Diff line change 52
52
volumes : " {{ geth_container_volumes }}"
53
53
env : " {{ geth_container_env }}"
54
54
networks : " {{ geth_container_networks }}"
55
+ entrypoint : " {{ geth_container_entrypoint | default(omit) }}"
55
56
command : " {{ geth_container_command + geth_container_command_extra_args }}"
56
57
user : " {{ geth_user_meta.uid }}"
57
58
pull : " {{ geth_container_pull | bool }}"
Original file line number Diff line number Diff line change 45
45
volumes : " {{ grandine_container_volumes + (grandine_validator_enabled | ternary(grandine_container_validator_volumes, [])) }}"
46
46
env : " {{ grandine_container_env }}"
47
47
networks : " {{ grandine_container_networks }}"
48
+ entrypoint : " {{ grandine_container_entrypoint | default(omit) }}"
48
49
command : >-
49
50
{{
50
51
grandine_container_command +
Original file line number Diff line number Diff line change 27
27
volumes : " {{ lighthouse_container_volumes }}"
28
28
env : " {{ lighthouse_container_env }}"
29
29
networks : " {{ lighthouse_container_networks }}"
30
+ entrypoint : " {{ lighthouse_container_entrypoint | default(omit) }}"
30
31
command : >-
31
32
{{
32
33
lighthouse_container_command +
68
69
volumes : " {{ lighthouse_validator_container_volumes }}"
69
70
env : " {{ lighthouse_validator_container_env }}"
70
71
networks : " {{ lighthouse_validator_container_networks }}"
72
+ entrypoint : " {{ lighthouse_validator_container_entrypoint | default(omit) }}"
71
73
command : >-
72
74
{{
73
75
lighthouse_validator_container_command +
Original file line number Diff line number Diff line change 27
27
volumes : " {{ lodestar_container_volumes }}"
28
28
env : " {{ lodestar_container_env }}"
29
29
networks : " {{ lodestar_container_networks }}"
30
+ entrypoint : " {{ lodestar_container_entrypoint | default(omit) }}"
30
31
command : >-
31
32
{{
32
33
lodestar_container_command +
68
69
volumes : " {{ lodestar_validator_container_volumes }}"
69
70
env : " {{ lodestar_validator_container_env }}"
70
71
networks : " {{ lodestar_validator_container_networks }}"
72
+ entrypoint : " {{ lodestar_validator_container_entrypoint | default(omit) }}"
71
73
command : >-
72
74
{{
73
75
lodestar_validator_container_command +
Original file line number Diff line number Diff line change 69
69
}}
70
70
env : " {{ nimbus_container_env }}"
71
71
networks : " {{ nimbus_container_networks }}"
72
+ entrypoint : " {{ nimbus_container_entrypoint | default(omit) }}"
72
73
command : >-
73
74
{{
74
75
nimbus_validator_enabled | ternary(
Original file line number Diff line number Diff line change 27
27
volumes : " {{ reth_container_volumes }}"
28
28
env : " {{ reth_container_env }}"
29
29
networks : " {{ reth_container_networks }}"
30
+ entrypoint : " {{ reth_container_entrypoint | default(omit) }}"
30
31
command : " {{ reth_container_command + reth_container_command_extra_args }}"
31
32
user : " {{ reth_user_meta.uid }}"
32
33
pull : " {{ reth_container_pull | bool }}"
Original file line number Diff line number Diff line change 45
45
volumes : " {{ teku_container_volumes + (teku_validator_enabled | ternary(teku_container_validator_volumes, [])) }}"
46
46
env : " {{ teku_container_env }}"
47
47
networks : " {{ teku_container_networks }}"
48
+ entrypoint : " {{ teku_container_entrypoint | default(omit) }}"
48
49
command : >-
49
50
{{
50
51
teku_container_command +
You can’t perform that action at this time.
0 commit comments