homecoming

This commit is contained in:
root
2025-03-18 07:18:19 +02:00
parent 33975e7a6e
commit 2eaa8f99e4
41 changed files with 988 additions and 474 deletions

View File

@@ -1,6 +1,6 @@
services:
ethereum-erigon:
image: erigontech/erigon:${ERIGON_VERSION:-v2.6.1}
image: erigontech/erigon:${ERIGON_VERSION:-v2.61.3}
user: root
expose:
- "16630"
@@ -8,14 +8,12 @@ services:
- "8545"
- "8551"
ports:
- "42087:42087"
- "42087:42087/udp"
- "29553:29553/udp"
- "45209:45209"
- "42137:42137"
- "42137:42137/udp"
- "52538:52538"
- "52538:52538/udp"
- "18518:18518"
- "18518:18518/udp"
- "20202:20202"
- "20202:20202/udp"
- "52290:52290"
- "52290:52290/udp"
environment:
- "IP=${IP}"
volumes:
@@ -25,27 +23,16 @@ services:
networks:
- chains
command: >
--prune.mode=archive
--rpc.evmtimeout=30m0s
--rpc.overlay.getlogstimeout=30m0s
--rpc.overlay.replayblocktimeout=30m0s
--chain mainnet
--internalcl
--beacon.api.port=5555
--beacon.api.addr=0.0.0.0
--beacon.api.cors.allow-origins=*
--port=42087
--p2p.allowed-ports=52538
--caplin.discovery.addr=0.0.0.0
--caplin.discovery.port=29553
--caplin.discovery.tcpport=45209
--port=18518
--p2p.allowed-ports=52290
--metrics --metrics.addr=0.0.0.0 --metrics.port=6060
--private.api.addr=0.0.0.0:9090
--torrent.port=42137
--torrent.port=20202
--nat=extip:${IP}
--pprof
--pprof.addr=0.0.0.0
--pprof.port=6061
--authrpc.addr=0.0.0.0
--authrpc.vhosts=*
--authrpc.jwtsecret=/jwtsecret
@@ -53,7 +40,6 @@ services:
--http.vhosts=*
--http.corsdomain=*
--http.api=eth,erigon,web3,net,debug,trace,txpool
--beacon.api=beacon,builder,debug,lighthouse,node,validator,config
--rpc.returndata.limit=1100000
--rpc.gascap=5000000000
--ws.port=8545
@@ -63,22 +49,12 @@ services:
labels:
- "traefik.enable=true"
- "traefik.http.middlewares.ethereum-mainnet-erigon-archive-trace-stripprefix.stripprefix.prefixes=/ethereum-erigon"
- "traefik.http.services.ethereum-mainnet-erigon-archive-trace.loadbalancer.server.port=8545"
- "${NO_SSL:-traefik.http.routers.ethereum-mainnet-erigon-archive-trace.entrypoints=websecure}"
- "traefik.http.routers.ethereum-mainnet-erigon-archive-trace.service=ethereum-mainnet-erigon-archive-trace"
- "${NO_SSL:-traefik.http.routers.ethereum-mainnet-erigon-archive-trace.tls.certresolver=myresolver}"
- "${NO_SSL:-traefik.http.routers.ethereum-mainnet-erigon-archive-trace.rule=Host(`$DOMAIN`) && PathPrefix(`/ethereum-erigon`)}"
- "${NO_SSL:+traefik.http.routers.ethereum-mainnet-erigon-archive-trace.rule=PathPrefix(`/ethereum-erigon`)}"
- "traefik.http.routers.ethereum-mainnet-erigon-archive-trace.middlewares=ethereum-mainnet-erigon-archive-trace-stripprefix, ipwhitelist"
- "traefik.http.services.ethereum-mainnet-erigon-archive-trace-beacon.loadbalancer.server.port=5555"
- "${NO_SSL:-traefik.http.routers.ethereum-mainnet-erigon-archive-trace-beacon.entrypoints=websecure}"
- "traefik.http.routers.ethereum-mainnet-erigon-archive-trace-beacon.service=ethereum-mainnet-erigon-archive-trace-beacon"
- "${NO_SSL:-traefik.http.routers.ethereum-mainnet-erigon-archive-trace-beacon.tls.certresolver=myresolver}"
- "${NO_SSL:-traefik.http.routers.ethereum-mainnet-erigon-archive-trace-beacon.rule=Host(`$DOMAIN`) && PathPrefix(`/ethereum-erigon/eth`)}"
- "${NO_SSL:+traefik.http.routers.ethereum-mainnet-erigon-archive-trace-beacon.rule=PathPrefix(`/ethereum-erigon/eth`)}"
- "traefik.http.routers.ethereum-mainnet-erigon-archive-trace-beacon.middlewares=ethereum-mainnet-erigon-archive-trace-stripprefix, ipwhitelist"
volumes:
ethereum-mainnet-erigon-archive-trace: