Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 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.37.0}
profiles: [""]
profiles: [ "" ]
restart: unless-stopped
ports:
- ${NETHERMIND_PORT_P2P:-30303}:30303/tcp # P2P TCP
Expand All @@ -35,7 +35,7 @@ services:
--Sync.SnapSync=true
--History.Pruning=Rolling
--Blocks.BlockProductionBlobLimit=0
networks: [dvnode]
networks: [ dvnode ]
volumes:
- ./data/nethermind:/nethermind/data
- ./jwt:/root/jwt
Expand All @@ -49,7 +49,7 @@ services:

lighthouse:
image: sigp/lighthouse:${LIGHTHOUSE_VERSION:-v8.1.3}
profiles: [""]
profiles: [ "" ]
ports:
- ${LIGHTHOUSE_PORT_P2P:-9000}:9000/tcp # P2P TCP
- 5054:5054/tcp # P2P TCP
Expand All @@ -73,7 +73,7 @@ services:
--metrics-address=0.0.0.0
--metrics-port=5054
--metrics-allow-origin="*"
networks: [dvnode]
networks: [ dvnode ]
volumes:
- ./data/lighthouse:/opt/app/beacon
- ./jwt:/opt/jwt
Expand All @@ -86,7 +86,7 @@ services:
# \___|_| |_|\__,_|_| \___/|_| |_|

charon:
image: obolnetwork/charon:${CHARON_VERSION:-v1.9.4}
image: obolnetwork/charon:${CHARON_VERSION:-v1.10.0}
environment:
- CHARON_BEACON_NODE_ENDPOINTS=${CHARON_BEACON_NODE_ENDPOINTS:-http://${CL:-lighthouse}:5052}
- CHARON_BEACON_NODE_TIMEOUT=${CHARON_BEACON_NODE_TIMEOUT:-3s}
Expand All @@ -110,7 +110,7 @@ services:
- ${CHARON_PORT_P2P_TCP:-3610}:${CHARON_PORT_P2P_TCP:-3610}/tcp # P2P TCP libp2p
labels:
- "alloy-monitored=${CHARON_ALLOY_MONITORED:-true}"
networks: [dvnode]
networks: [ dvnode ]
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
Expand All @@ -127,10 +127,10 @@ services:

lodestar:
image: chainsafe/lodestar:${LODESTAR_VERSION:-v1.42.0}
profiles: [""]
depends_on: [charon]
profiles: [ "" ]
depends_on: [ charon ]
entrypoint: /opt/lodestar/run.sh
networks: [dvnode]
networks: [ dvnode ]
environment:
BEACON_NODE_ADDRESS: http://charon:3600
NETWORK: ${NETWORK}
Expand All @@ -152,7 +152,7 @@ services:

mev-boost:
image: ${MEVBOOST_IMAGE:-flashbots/mev-boost}:${MEVBOOST_VERSION:-1.10.1}
profiles: [""]
profiles: [ "" ]
command: |
-${NETWORK}
-loglevel=debug
Expand All @@ -161,7 +161,7 @@ services:
-relays=${MEVBOOST_RELAYS}
labels:
- "alloy-monitored=${MEV_BOOST_ALLOY_MONITORED:-true}"
networks: [dvnode]
networks: [ dvnode ]
restart: unless-stopped

# _ _ _
Expand All @@ -174,7 +174,7 @@ services:
prometheus:
image: prom/prometheus:${PROMETHEUS_VERSION:-v3.11.2}
user: ":"
networks: [dvnode]
networks: [ dvnode ]
environment:
PROM_REMOTE_WRITE_TOKEN: ${PROM_REMOTE_WRITE_TOKEN}
SERVICE_OWNER: ${SERVICE_OWNER:-obol-cdvn}
Expand All @@ -191,7 +191,7 @@ services:
user: ":"
ports:
- ${MONITORING_IP_GRAFANA:-0.0.0.0}:${MONITORING_PORT_GRAFANA:-3000}:3000
networks: [dvnode]
networks: [ dvnode ]
volumes:
- ./grafana/datasource.yml:/etc/grafana/provisioning/datasources/datasource.yml
- ./grafana/dashboards.yml:/etc/grafana/provisioning/dashboards/datasource.yml
Expand Down
2 changes: 1 addition & 1 deletion relay/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
#
relay:
# Pegged charon version (update this for each release).
image: obolnetwork/charon:${CHARON_VERSION:-v1.9.4}
image: obolnetwork/charon:${CHARON_VERSION:-v1.10.0}
environment:
CHARON_P2P_TCP_ADDRESS: 0.0.0.0:3610
CHARON_HTTP_ADDRESS: 0.0.0.0:3640
Expand Down
Loading