node is refactored into it's own template

This commit is contained in:
Para Dox
2025-05-24 18:04:16 +07:00
parent b0fc62b701
commit 6d0a5d9d6d
306 changed files with 1633 additions and 1671 deletions

View File

@@ -25,11 +25,6 @@
# curl -X POST https://${IP}.traefik.me/ethereum-mainnet-reth-minimal \
# -H "Content-Type: application/json" \
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
x-logging-defaults: &logging-defaults
driver: json-file
options:
max-size: 10m
max-file: '3'
services:
ethereum-mainnet-reth-minimal:
@@ -109,12 +104,25 @@ services:
- traefik.http.routers.ethereum-mainnet-reth-minimal-trace.middlewares=ethereum-mainnet-reth-minimal-trace-stripprefix, ipallowlist
shm_size: 2gb
ethereum-mainnet-reth-minimal-pruner:
image: debian:latest
entrypoint: [/scripts/prune-reth.sh]
restart: no
volumes:
- ./scripts/castrate-reth.sh:/scripts/prune-reth.sh
- ethereum-mainnet-reth-minimal-trace:/data
logging: *logging-defaults
profiles:
- pruning
ethereum-mainnet-reth-minimal-node:
image: ${ETHEREUM_NIMBUS_IMAGE:-statusim/nimbus-eth2}:${ETHEREUM_MAINNET_NIMBUS_VERSION:-amd64-v25.4.1}
user: root
ports:
- 19286:19286
- 19286:19286/udp
expose:
- 3500
entrypoint: /bin/sh -c '/home/user/nimbus-eth2/build/nimbus_beacon_node trustedNodeSync --network=mainnet --trusted-node-url=https://mainnet.beaconstate.info --backfill=false; exec /home/user/nimbus-eth2/build/nimbus_beacon_node "$@"' --
command:
- --history=prune
@@ -151,16 +159,6 @@ services:
- ${NO_SSL:+traefik.http.routers.ethereum-mainnet-reth-minimal-trace-node.rule=PathPrefix(`/ethereum-mainnet-reth-minimal/eth`)}
- traefik.http.routers.ethereum-mainnet-reth-minimal-trace-node.middlewares=ethereum-mainnet-reth-minimal-trace-node-stripprefix, ipallowlist
ethereum-mainnet-reth-minimal-pruner:
image: debian:latest
entrypoint: [/scripts/prune-reth.sh]
restart: no
volumes:
- ./scripts/castrate-reth.sh:/scripts/prune-reth.sh
- ethereum-mainnet-reth-minimal-trace:/data
profiles:
- pruning
volumes:
ethereum-mainnet-reth-minimal-trace:
ethereum-mainnet-reth-minimal-trace_nimbus:
@@ -217,4 +215,12 @@ x-upstreams:
generic:
rpc:
url: $${RPC_URL}
- id: $${ID}-beacon-chain
chain: eth-beacon-chain
labels:
provider: $${PROVIDER}-beacon-chain
connection:
generic:
rpc:
url: $${RPC_URL}
...