fix
This commit is contained in:
@@ -96,7 +96,7 @@ services:
|
||||
volumes:
|
||||
- ${BERACHAIN_BARTIO_RETH_ARCHIVE_TRACE__NODE_DATA:-berachain-bartio-reth-archive-trace_node}:/root/.beacond/data
|
||||
- ./berachain/scripts/init.sh:/init.sh
|
||||
- .jwtsecret:/root/.beacond/config/jwt.hex:ro
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
- berachain-bartio-reth-archive-trace_config:/root/.beacond/config
|
||||
|
||||
volumes:
|
||||
|
||||
@@ -97,7 +97,7 @@ services:
|
||||
volumes:
|
||||
- ${BERACHAIN_BARTIO_RETH_PRUNED_TRACE__NODE_DATA:-berachain-bartio-reth-pruned-trace_node}:/root/.beacond/data
|
||||
- ./berachain/scripts/init.sh:/init.sh
|
||||
- .jwtsecret:/root/.beacond/config/jwt.hex:ro
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
- berachain-bartio-reth-pruned-trace_config:/root/.beacond/config
|
||||
|
||||
volumes:
|
||||
|
||||
@@ -97,7 +97,7 @@ services:
|
||||
volumes:
|
||||
- ${BERACHAIN_BEPOLIA_RETH_ARCHIVE_TRACE__NODE_DATA:-berachain-bepolia-reth-archive-trace_node}:/root/.beacond/data
|
||||
- ./berachain/scripts/init.sh:/init.sh
|
||||
- .jwtsecret:/root/.beacond/config/jwt.hex:ro
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
- berachain-bepolia-reth-archive-trace_config:/root/.beacond/config
|
||||
|
||||
volumes:
|
||||
|
||||
@@ -98,7 +98,7 @@ services:
|
||||
volumes:
|
||||
- ${BERACHAIN_BEPOLIA_RETH_PRUNED_TRACE__NODE_DATA:-berachain-bepolia-reth-pruned-trace_node}:/root/.beacond/data
|
||||
- ./berachain/scripts/init.sh:/init.sh
|
||||
- .jwtsecret:/root/.beacond/config/jwt.hex:ro
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
- berachain-bepolia-reth-pruned-trace_config:/root/.beacond/config
|
||||
|
||||
volumes:
|
||||
|
||||
@@ -97,7 +97,7 @@ services:
|
||||
volumes:
|
||||
- ${BERACHAIN_MAINNET_RETH_ARCHIVE_TRACE__NODE_DATA:-berachain-mainnet-reth-archive-trace_node}:/root/.beacond/data
|
||||
- ./berachain/scripts/init.sh:/init.sh
|
||||
- .jwtsecret:/root/.beacond/config/jwt.hex:ro
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
- berachain-mainnet-reth-archive-trace_config:/root/.beacond/config
|
||||
|
||||
volumes:
|
||||
|
||||
@@ -98,7 +98,7 @@ services:
|
||||
volumes:
|
||||
- ${BERACHAIN_MAINNET_RETH_PRUNED_TRACE__NODE_DATA:-berachain-mainnet-reth-pruned-trace_node}:/root/.beacond/data
|
||||
- ./berachain/scripts/init.sh:/init.sh
|
||||
- .jwtsecret:/root/.beacond/config/jwt.hex:ro
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
- berachain-mainnet-reth-pruned-trace_config:/root/.beacond/config
|
||||
|
||||
volumes:
|
||||
|
||||
@@ -20,15 +20,17 @@ CONFIG_DIR="/root/.beacond/config"
|
||||
# Create config directory
|
||||
mkdir -p "$CONFIG_DIR"
|
||||
|
||||
#JWTSECRET="0x$(cat /jwtsecret)" # reth and bepolia don't speak the same language
|
||||
JWTSECRET="$(cat /jwtsecret)" # needs to go to the config dir (default path)
|
||||
P2P_STRING="tcp:\\/\\/0\\.0\\.0\\.0\\:${P2P_PORT:-55696}"
|
||||
NAT_STRING="${IP}:${P2P_PORT:-55696}"
|
||||
|
||||
#echo "$JWTSECRET" > "$CONFIG_DIR/jwt.hex"
|
||||
echo "$JWTSECRET" > "$CONFIG_DIR/jwt.hex"
|
||||
|
||||
#SEEDS_URL="https://raw.githubusercontent.com/berachain/beacon-kit/main/testing/networks/$CHAINID/cl-seeds.txt"
|
||||
|
||||
|
||||
env
|
||||
|
||||
# this goes first because it won't overwrite shit
|
||||
apk add curl
|
||||
if [ $? -ne 0 ]; then exit 1; fi
|
||||
|
||||
Reference in New Issue
Block a user