Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CHANGE: replace stereum/* docker images #303

Merged
merged 9 commits into from
May 20, 2022
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,31 @@
state: started
configuration:
id: "{{ beacon_service }}"
image: stereum/lighthouse:v2.1.2-50
env:
DEBUG_LEVEL: debug
NETWORK: prater
ETH1_NODES: http://10.10.0.3:8545
DATADIR: /opt/app/beacon
SLASHERDIR: /opt/app/slasher
SLASHER_DB_SIZE: "16"
image: sigp/lighthouse:v2.1.2
env: {}
ports:
- 0.0.0.0:9000:9000/tcp
- 0.0.0.0:9000:9000/udp
- 127.0.0.1:5052:5052/tcp
command: []
entrypoint: ["/opt/app/start/beacon.sh"]
command:
- lighthouse
- bn
- --debug-level=debug
- --network=prater
- --eth1-endpoints=http://10.10.0.3:8545
- --eth1-blocks-per-log-query=150
- --datadir=/opt/app/beacon
- --http
- --http-address=0.0.0.0
- --metrics
- --metrics-address=0.0.0.0
- --disable-upnp
- --validator-monitor-auto
- --slasher
- --slasher-dir=/opt/app/slasher
- --slasher-max-db-size=16
entrypoint: []
user: "2000"
volumes:
- "/opt/app/services/{{ beacon_service }}/beacon/lighthouse:/opt/app/beacon"
- "/opt/app/services/{{ beacon_service }}/beacon:/opt/app/beacon"
- "/opt/app/services/{{ beacon_service }}/slasher:/opt/app/slasher"
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
- stereum_docker_ps.stdout.find("grafana/grafana") != -1
- stereum_docker_ps.stdout.find("prom/node-exporter") != -1
- stereum_docker_ps.stdout.find("prom/prometheus") != -1
- stereum_docker_ps.stdout.find("stereum/lighthouse") != -1
- stereum_docker_ps.stdout.find("sigp/lighthouse") != -1
- stereum_docker_ps.stdout.find("3000->3000") != -1
- stereum_docker_ps.stdout.find("9100/tcp") != -1
- stereum_docker_ps.stdout.find("9090->9090") != -1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@
state: started
configuration:
id: "{{ beacon_service }}"
image: stereum/nimbus:v1.6.0-55
image: statusim/nimbus-eth2:multiarch-v22.3.0
ports:
- 0.0.0.0:9000:9000/tcp
- 0.0.0.0:9000:9000/udp
- 127.0.0.1:9190:9190/tcp
env: {}
entrypoint: ["/opt/app/build/nimbus_beacon_node"]
entrypoint: ["/home/user/nimbus-eth2/build/nimbus_beacon_node"]
command:
- --network=prater
- --data-dir=/opt/app/beacon
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
- stereum_docker_ps.stdout.find("grafana/grafana") != -1
- stereum_docker_ps.stdout.find("prom/node-exporter") != -1
- stereum_docker_ps.stdout.find("prom/prometheus") != -1
- stereum_docker_ps.stdout.find("stereum/nimbus") != -1
- stereum_docker_ps.stdout.find("statusim/nimbus-eth2") != -1
- stereum_docker_ps.stdout.find("3000->3000") != -1
- stereum_docker_ps.stdout.find("9100/tcp") != -1
- stereum_docker_ps.stdout.find("9090->9090") != -1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ platforms:
hostname: ubuntu
server_type: cpx21
image: ubuntu-22.04
# network:
# name: eth2-prater
# ip_range: 10.10.0.0/24
# ip: 10.10.0.145
network:
name: eth2-prater
ip_range: 10.10.0.0/24
ip: 10.10.0.145
# - name: "validator-import-api--prysm--centos-stream-8"
# hostname: "centos"
# server_type: cpx21
Expand Down
4 changes: 2 additions & 2 deletions launcher/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion launcher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stereum-launcher",
"version": "2.0.1",
"version": "2.0.3",
"private": true,
"description": "Stereum Ethereum Node Setup Launcher",
"author": "stereum.net",
Expand Down