Skip to content

Commit

Permalink
update clients for mainnet dencun
Browse files Browse the repository at this point in the history
  • Loading branch information
dB2510 committed Mar 6, 2024
1 parent 2dfca87 commit 18cfb47
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

######### Charon Config #########

# Charon docker container image version, e.g. `latest` or `v0.19.0`.
# Charon docker container image version, e.g. `latest` or `v0.19.1`.
# See available tags https://hub.docker.com/r/obolnetwork/charon/tags.
#CHARON_VERSION=

Expand Down
14 changes: 7 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,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 @@ -42,7 +42,7 @@ services:
# |___/

lighthouse:
image: sigp/lighthouse:${LIGHTHOUSE_VERSION:-v4.6.0}
image: sigp/lighthouse:${LIGHTHOUSE_VERSION:-v5.0.0}
ports:
- ${LIGHTHOUSE_PORT_P2P:-9000}:9000/tcp # P2P TCP
- ${LIGHTHOUSE_PORT_P2P:-9000}:9000/udp # P2P UDP
Expand Down Expand Up @@ -74,7 +74,7 @@ services:
# \___|_| |_|\__,_|_| \___/|_| |_|

charon:
image: obolnetwork/charon:${CHARON_VERSION:-v0.19.0}
image: obolnetwork/charon:${CHARON_VERSION:-v0.19.1}
environment:
- CHARON_BEACON_NODE_ENDPOINTS=${CHARON_BEACON_NODE_ENDPOINTS:-http://lighthouse:5052}
- CHARON_LOG_LEVEL=${CHARON_LOG_LEVEL:-info}
Expand All @@ -101,7 +101,7 @@ services:
# |_|\___/ \__,_|\___||___/\__\__,_|_|

lodestar:
image: chainsafe/lodestar:${LODESTAR_VERSION:-v1.15.1}
image: chainsafe/lodestar:${LODESTAR_VERSION:-v1.16.0}
depends_on: [charon]
entrypoint: /opt/lodestar/run.sh
networks: [dvnode]
Expand All @@ -121,7 +121,7 @@ services:
# | | | | | | __/\ V /_____| |_) | (_) | (_) \__ \ |_
# |_| |_| |_|\___| \_/ |_.__/ \___/ \___/|___/\__|
mev-boost:
image: flashbots/mev-boost:${MEVBOOST_VERSION:-1.6.1a3}
image: flashbots/mev-boost:${MEVBOOST_VERSION:-1.7.0}
networks: [dvnode]
command: |
-${NETWORK:-holesky}
Expand All @@ -139,7 +139,7 @@ services:
# |___/

prometheus:
image: prom/prometheus:${PROMETHEUS_VERSION:-v2.46.0}
image: prom/prometheus:${PROMETHEUS_VERSION:-v2.50.1}
user: ":"
networks: [dvnode]
volumes:
Expand All @@ -148,7 +148,7 @@ services:
restart: unless-stopped

grafana:
image: grafana/grafana:${GRAFANA_VERSION:-10.0.3}
image: grafana/grafana:${GRAFANA_VERSION:-10.3.3}
user: ":"
ports:
- ${MONITORING_PORT_GRAFANA:-3000}:3000
Expand Down

0 comments on commit 18cfb47

Please sign in to comment.