Skip to content

Commit

Permalink
upgrade for dencun (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
dB2510 authored Mar 19, 2024
1 parent 8193eaf commit 3b64c4d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
22 changes: 11 additions & 11 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3.8"
x-node-base:
# Pegged charon version (update this for each release).
&node-base
image: obolnetwork/charon:${CHARON_VERSION:-v0.19.1}
image: obolnetwork/charon:${CHARON_VERSION:-v0.19.2}
restart: unless-stopped
networks: [ cluster ]
depends_on: [ relay ]
Expand All @@ -29,7 +29,7 @@ services:
# | | | | __/ |_| | | | __/ | | | | | | | | | | | (_| |
# |_| |_|\___|\__|_| |_|\___|_| |_| |_| |_|_|_| |_|\__,_|
nethermind:
image: nethermind/nethermind:${NETHERMIND_VERSION:-1.25.3}
image: nethermind/nethermind:${NETHERMIND_VERSION:-1.25.4}
restart: unless-stopped
ports:
- ${NETHERMIND_PORT_P2P:-30303}:30303/tcp # P2P TCP
Expand Down Expand Up @@ -62,7 +62,7 @@ services:
# |___/

lighthouse:
image: sigp/lighthouse:${LIGHTHOUSE_VERSION:-v4.6.0}
image: sigp/lighthouse:${LIGHTHOUSE_VERSION:-v5.1.0}
ports:
- ${LIGHTHOUSE_PORT_P2P:-9000}:9000/tcp # P2P TCP
- ${LIGHTHOUSE_PORT_P2P:-9000}:9000/udp # P2P UDP
Expand Down Expand Up @@ -167,7 +167,7 @@ services:
# \ V / (_| | | | (_| | (_| | || (_) | | \__ \
# \_/ \__,_|_|_|\__,_|\__,_|\__\___/|_| |___/
vc0-lighthouse:
image: sigp/lighthouse:${LIGHTHOUSE_VERSION:-v4.6.0}
image: sigp/lighthouse:${LIGHTHOUSE_VERSION:-v5.1.0}
entrypoint: /opt/lighthouse/run.sh
networks: [ cluster ]
depends_on: [ node0 ]
Expand All @@ -180,7 +180,7 @@ services:
- .charon/cluster/node0/validator_keys:/opt/charon/keys

vc1-teku:
image: consensys/teku:${TEKU_VERSION:-24.1.1}
image: consensys/teku:${TEKU_VERSION:-24.2.0}
networks: [ cluster ]
depends_on: [ node1 ]
restart: unless-stopped
Expand All @@ -205,7 +205,7 @@ services:
- ./nimbus:/home/user/data

vc3-lighthouse:
image: sigp/lighthouse:${LIGHTHOUSE_VERSION:-v4.6.0}
image: sigp/lighthouse:${LIGHTHOUSE_VERSION:-v5.1.0}
entrypoint: /opt/lighthouse/run.sh
networks: [ cluster ]
depends_on: [ node3 ]
Expand All @@ -218,7 +218,7 @@ services:
- .charon/cluster/node3/validator_keys:/opt/charon/keys

vc4-teku:
image: consensys/teku:${TEKU_VERSION:-24.1.1}
image: consensys/teku:${TEKU_VERSION:-24.2.0}
networks: [ cluster ]
depends_on: [ node4 ]
restart: unless-stopped
Expand Down Expand Up @@ -249,15 +249,15 @@ services:
# |_| |_| |_|\___/|_| |_|_|\__\___/|_| |_|_| |_|\__, |
# |___/
prometheus:
image: prom/prometheus:${PROMETHEUS_VERSION:-v2.44.0}
image: prom/prometheus:${PROMETHEUS_VERSION:-v2.50.1}
ports:
- "9090:9090"
networks: [ cluster ]
volumes:
- ./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml

grafana:
image: grafana/grafana:${GRAFANA_VERSION:-9.5.3}
image: grafana/grafana:${GRAFANA_VERSION:-10.3.3}
ports:
- "3000:3000"
networks: [ cluster ]
Expand All @@ -269,13 +269,13 @@ services:
- ./grafana/dashboards:/etc/dashboards

node-exporter:
image: prom/node-exporter:${NODE_EXPORTER_VERSION:-v1.6.0}
image: prom/node-exporter:${NODE_EXPORTER_VERSION:-v1.7.0}
ports:
- "9100:9100"
networks: [ cluster ]

jaeger:
image: jaegertracing/all-in-one:${JAEGAR_VERSION:-1.46.0}
image: jaegertracing/all-in-one:${JAEGAR_VERSION:-1.55.0}
networks: [ cluster ]
ports:
- "16686:16686"
Expand Down
4 changes: 2 additions & 2 deletions nimbus/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM statusim/nimbus-eth2:multiarch-v24.1.2 as nimbusbn
FROM statusim/nimbus-eth2:multiarch-v24.2.2 as nimbusbn

FROM statusim/nimbus-validator-client:multiarch-v24.1.1
FROM statusim/nimbus-validator-client:multiarch-v24.2.2

COPY --from=nimbusbn /home/user/nimbus_beacon_node /home/user/nimbus_beacon_node

Expand Down
4 changes: 2 additions & 2 deletions vouch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM wealdtech/ethdo:1.26.3 as ethdo
FROM wealdtech/ethdo:1.35.2 as ethdo

FROM attestant/vouch:1.6.3
FROM attestant/vouch:1.8.0

COPY --from=ethdo /app/ethdo /app/ethdo

Expand Down

0 comments on commit 3b64c4d

Please sign in to comment.