This commit is contained in:
squidbear
2025-03-28 13:41:56 +01:00
parent e9c866d85b
commit a5f1736211
6 changed files with 108 additions and 114 deletions

View File

@@ -13,27 +13,26 @@ services:
- "10563:10563"
- "10563:10563/udp"
restart: unless-stopped
entrypoint: ["reth" "node"]
command: >
- --chain mainnet
- --rpc-max-connections 429496729
- --metrics 0.0.0.0:9001
entrypoint: ["reth", "node"]
command:
- --chain=mainnet
- --metrics=0.0.0.0:9001
- --http
- --http.addr 0.0.0.0
- --http.port 8545
- --http.addr=0.0.0.0
- --http.port=8545
- --ws
- --ws.addr 0.0.0.0
- --ws.port 8545
- --ws.origins '*'
- --port 10563
- --discovery.port 10563
- --authrpc.addr 0.0.0.0
- --authrpc.jwtsecret /jwtsecret
- --http.api "debug,eth,net,trace,txpool,web3,rpc,reth,admin"
- --ws.api "debug,eth,net,trace,txpool,web3,rpc,reth,admin"
- --http.corsdomain '*'
- --rpc.max-logs-per-response 1100000
- --rpc.gascap 600000000
- --ws.addr=0.0.0.0
- --ws.port=8545
- --ws.origins=*
- --port=10563
- --discovery.port=10563
- --authrpc.addr=0.0.0.0
- --authrpc.jwtsecret=/jwtsecret
- --http.api=debug,eth,net,trace,txpool,web3,rpc,reth,admin
- --ws.api=debug,eth,net,trace,txpool,web3,rpc,reth,admin
- --http.corsdomain=*
- --rpc.max-logs-per-response=1100000
- --rpc.gascap=600000000
stop_grace_period: 1m
labels: