From 998a98cbdd1ee8a98234f75906739c728208baf5 Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Wed, 22 Nov 2023 07:24:40 +0100 Subject: [PATCH] start with reth and prysm --- reth-mainnet.yml | 36 +++++++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/reth-mainnet.yml b/reth-mainnet.yml index ee0be592..d678c5a0 100644 --- a/reth-mainnet.yml +++ b/reth-mainnet.yml @@ -1,11 +1,12 @@ version: '3.1' services: - reth-mainnet: + mainnet-reth: image: ghcr.io/paradigmxyz/reth:v0.1.0-alpha.10 user: root volumes: - - "reth-mainnet:/datadir" + - "reth-mainnet:/root/.local/share/reth/mainnet/db" + - ".jwtsecret:/jwtsecret" expose: - 44169 - 8545 @@ -14,7 +15,7 @@ services: - "44169:44169" - "44169:44169/udp" restart: unless-stopped - command: node --metrics 0.0.0.0:9001 --http.addr 0.0.0.0 --http.port 8545 --ws --ws.addr 0.0.0.0 --ws.port 8545 --ws.origins '*' --port 44169 --discovery.port 44169 --chain mainnet + command: node --chain mainnet --full --metrics 0.0.0.0:9001 --http --http.addr 0.0.0.0 --http.port 8545 --ws --ws.addr 0.0.0.0 --ws.port 8545 --ws.origins '*' --port 44169 --discovery.port 44169 --authrpc.addr 0.0.0.0 --authrpc.jwtsecret /jwtsecret --http.api "debug,eth,net,trace,txpool,web3,rpc,reth" --ws.api "debug,eth,net,trace,txpool,web3,rpc,reth" --http.corsdomain '*' stop_grace_period: 1m labels: - "prometheus-scrape.enabled=true" @@ -31,5 +32,34 @@ services: networks: - chains + mainnet-prysm-reth: + image: prysmaticlabs/prysm-beacon-chain:stable + ports: + #- "127.0.0.1:3500:3500" + - "36997:36997" + - "36997:36997/udp" + command: + [ + "--datadir=/data", + "--mainnet", + "--jwt-secret=/jwtsecret", + "--rpc-host=0.0.0.0", + "--grpc-gateway-host=0.0.0.0", + "--monitoring-host=0.0.0.0", + "--p2p-tcp-port=36997", + "--p2p-udp-port=36997", + "--checkpoint-sync-url=https://mainnet-checkpoint-sync.stakely.io", + "--execution-endpoint=http://mainnet-reth:8551", + "--accept-terms-of-use" + ] + networks: + - chains + volumes: + - "prysm-reth-mainnet:/data" + - ".jwtsecret:/jwtsecret" + restart: unless-stopped + stop_grace_period: 1m + volumes: reth-mainnet: + prysm-reth-mainnet: