Fix a typo
This commit is contained in:
parent
6de8fc678b
commit
921fd1d81f
|
@ -9,7 +9,7 @@ beacon_node_total_nodes: 1
|
|||
beacon_node_cont_tag: '{{ beacon_node_network }}-{{ beacon_node_build_flavour }}'
|
||||
beacon_node_cont_image: 'statusteam/nimbus_beacon_node:{{ beacon_node_cont_tag }}'
|
||||
|
||||
beacon_node_disovery_port: 9000
|
||||
beacon_node_discovery_port: 9000
|
||||
beacon_node_listening_port: 9000
|
||||
|
||||
# general container management
|
||||
|
|
|
@ -20,14 +20,14 @@
|
|||
com.centurylinklabs.watchtower.enable: 'true'
|
||||
ports:
|
||||
- '{{ public_tcp_port }}:{{ beacon_node_listening_port }}'
|
||||
- '{{ public_udp_port }}:{{ beacon_node_disovery_port }}/udp'
|
||||
- '{{ public_udp_port }}:{{ beacon_node_discovery_port }}/udp'
|
||||
command: |
|
||||
{% if beacon_node_verbose %}
|
||||
--logLevel=DEBUG
|
||||
{% endif %}
|
||||
--network={{ beacon_node_network }}
|
||||
--tcpPort={{ beacon_node_listening_port }}
|
||||
--udpPort={{ beacon_node_disovery_port }}
|
||||
--udpPort={{ beacon_node_discovery_port }}
|
||||
volumes:
|
||||
- '/docker/{{ container_name }}/data:/root/.cache/nimbus'
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
- include_tasks: beacon_node.yml
|
||||
vars:
|
||||
public_tcp_port: '{{ beacon_node_listening_port + loop_index }}'
|
||||
public_udp_port: '{{ beacon_node_disovery_port + loop_index }}'
|
||||
public_udp_port: '{{ beacon_node_discovery_port + loop_index }}'
|
||||
container_name: 'beacon-node-{{ beacon_node_build_flavour }}-{{ beacon_node_network}}-{{loop_index }}'
|
||||
index: '{{ loop_index }}'
|
||||
loop: '{{ range(0, beacon_node_total_nodes) | list }}'
|
||||
|
|
Loading…
Reference in New Issue