Skip to content

Commit 248c02f

Browse files
authored
Charon v1.10.1 (#474)
1 parent 9b58abc commit 248c02f

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

docker-compose.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111

1212
nethermind:
1313
image: nethermind/nethermind:${NETHERMIND_VERSION:-1.37.0}
14-
profiles: [ "" ]
14+
profiles: [""]
1515
restart: unless-stopped
1616
ports:
1717
- ${NETHERMIND_PORT_P2P:-30303}:30303/tcp # P2P TCP
@@ -35,7 +35,7 @@ services:
3535
--Sync.SnapSync=true
3636
--History.Pruning=Rolling
3737
--Blocks.BlockProductionBlobLimit=0
38-
networks: [ dvnode ]
38+
networks: [dvnode]
3939
volumes:
4040
- ./data/nethermind:/nethermind/data
4141
- ./jwt:/root/jwt
@@ -49,7 +49,7 @@ services:
4949

5050
lighthouse:
5151
image: sigp/lighthouse:${LIGHTHOUSE_VERSION:-v8.1.3}
52-
profiles: [ "" ]
52+
profiles: [""]
5353
ports:
5454
- ${LIGHTHOUSE_PORT_P2P:-9000}:9000/tcp # P2P TCP
5555
- 5054:5054/tcp # P2P TCP
@@ -73,7 +73,7 @@ services:
7373
--metrics-address=0.0.0.0
7474
--metrics-port=5054
7575
--metrics-allow-origin="*"
76-
networks: [ dvnode ]
76+
networks: [dvnode]
7777
volumes:
7878
- ./data/lighthouse:/opt/app/beacon
7979
- ./jwt:/opt/jwt
@@ -86,7 +86,7 @@ services:
8686
# \___|_| |_|\__,_|_| \___/|_| |_|
8787

8888
charon:
89-
image: obolnetwork/charon:${CHARON_VERSION:-v1.10.0}
89+
image: obolnetwork/charon:${CHARON_VERSION:-v1.10.1}
9090
environment:
9191
- CHARON_BEACON_NODE_ENDPOINTS=${CHARON_BEACON_NODE_ENDPOINTS:-http://${CL:-lighthouse}:5052}
9292
- CHARON_BEACON_NODE_TIMEOUT=${CHARON_BEACON_NODE_TIMEOUT:-3s}
@@ -110,7 +110,7 @@ services:
110110
- ${CHARON_PORT_P2P_TCP:-3610}:${CHARON_PORT_P2P_TCP:-3610}/tcp # P2P TCP libp2p
111111
labels:
112112
- "alloy-monitored=${CHARON_ALLOY_MONITORED:-true}"
113-
networks: [ dvnode ]
113+
networks: [dvnode]
114114
extra_hosts:
115115
- "host.docker.internal:host-gateway"
116116
volumes:
@@ -127,10 +127,10 @@ services:
127127

128128
lodestar:
129129
image: chainsafe/lodestar:${LODESTAR_VERSION:-v1.42.0}
130-
profiles: [ "" ]
131-
depends_on: [ charon ]
130+
profiles: [""]
131+
depends_on: [charon]
132132
entrypoint: /opt/lodestar/run.sh
133-
networks: [ dvnode ]
133+
networks: [dvnode]
134134
environment:
135135
BEACON_NODE_ADDRESS: http://charon:3600
136136
NETWORK: ${NETWORK}
@@ -152,7 +152,7 @@ services:
152152

153153
mev-boost:
154154
image: ${MEVBOOST_IMAGE:-flashbots/mev-boost}:${MEVBOOST_VERSION:-1.10.1}
155-
profiles: [ "" ]
155+
profiles: [""]
156156
command: |
157157
-${NETWORK}
158158
-loglevel=debug
@@ -161,7 +161,7 @@ services:
161161
-relays=${MEVBOOST_RELAYS}
162162
labels:
163163
- "alloy-monitored=${MEV_BOOST_ALLOY_MONITORED:-true}"
164-
networks: [ dvnode ]
164+
networks: [dvnode]
165165
restart: unless-stopped
166166

167167
# _ _ _
@@ -174,7 +174,7 @@ services:
174174
prometheus:
175175
image: prom/prometheus:${PROMETHEUS_VERSION:-v3.11.2}
176176
user: ":"
177-
networks: [ dvnode ]
177+
networks: [dvnode]
178178
environment:
179179
PROM_REMOTE_WRITE_TOKEN: ${PROM_REMOTE_WRITE_TOKEN}
180180
SERVICE_OWNER: ${SERVICE_OWNER:-obol-cdvn}
@@ -191,7 +191,7 @@ services:
191191
user: ":"
192192
ports:
193193
- ${MONITORING_IP_GRAFANA:-0.0.0.0}:${MONITORING_PORT_GRAFANA:-3000}:3000
194-
networks: [ dvnode ]
194+
networks: [dvnode]
195195
volumes:
196196
- ./grafana/datasource.yml:/etc/grafana/provisioning/datasources/datasource.yml
197197
- ./grafana/dashboards.yml:/etc/grafana/provisioning/dashboards/datasource.yml

relay/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
#
77
relay:
88
# Pegged charon version (update this for each release).
9-
image: obolnetwork/charon:${CHARON_VERSION:-v1.10.0}
9+
image: obolnetwork/charon:${CHARON_VERSION:-v1.10.1}
1010
environment:
1111
CHARON_P2P_TCP_ADDRESS: 0.0.0.0:3610
1212
CHARON_HTTP_ADDRESS: 0.0.0.0:3640

0 commit comments

Comments
 (0)