183 lines
6.8 KiB
YAML
183 lines
6.8 KiB
YAML
---
|
|
x-logging-defaults: &logging-defaults
|
|
driver: json-file
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|
|
|
|
# Usage:
|
|
#
|
|
# mkdir rpc && cd rpc
|
|
#
|
|
# git init
|
|
# git remote add origin https://github.com/StakeSquid/ethereum-rpc-docker.git
|
|
# git fetch origin vibe
|
|
# git checkout origin/vibe
|
|
#
|
|
# docker run --rm alpine sh -c "printf '0x'; head -c32 /dev/urandom | xxd -p -c 64" > .jwtsecret
|
|
#
|
|
# env
|
|
# ...
|
|
# IP=$(curl ipinfo.io/ip)
|
|
# DOMAIN=${IP}.traefik.me
|
|
# COMPOSE_FILE=base.yml:rpc.yml:taiko/geth/taiko-alethia-geth-pruned-pebble-path.yml
|
|
#
|
|
# docker compose up -d
|
|
#
|
|
# curl -X POST https://${IP}.traefik.me/taiko-alethia \
|
|
# -H "Content-Type: application/json" \
|
|
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
|
|
|
services:
|
|
taiko-alethia:
|
|
image: ${TAIKO_GETH_IMAGE:-us-docker.pkg.dev/evmchain/images/taiko-geth}:${TAIKO_ALETHIA_GETH_VERSION:-v1.17.3}
|
|
sysctls:
|
|
# TCP Performance
|
|
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
|
net.ipv4.tcp_no_metrics_save: 1 # Disable metrics cache
|
|
net.ipv4.tcp_rmem: 4096 87380 16777216 # Increase TCP read buffers
|
|
net.ipv4.tcp_wmem: 4096 87380 16777216 # Increase TCP write buffers
|
|
net.core.somaxconn: 32768 # Higher connection queue
|
|
# Memory/Connection Management
|
|
# net.core.netdev_max_backlog: 50000 # Increase network buffer
|
|
net.ipv4.tcp_max_syn_backlog: 30000 # More SYN requests
|
|
net.ipv4.tcp_max_tw_buckets: 2000000 # Allow more TIME_WAIT sockets
|
|
ulimits:
|
|
nofile: 1048576 # Max open files (for RPC/WS connections)
|
|
user: root
|
|
ports:
|
|
- 10251:10251
|
|
- 10251:10251/udp
|
|
expose:
|
|
- 8545
|
|
- 6060
|
|
- 8551
|
|
env_file:
|
|
- ./taiko/alethia.env
|
|
- ./taiko/geth.env
|
|
environment:
|
|
- GETH_GPO_DEFAULTPRICE=10000000
|
|
- GETH_NETWORKID=167000
|
|
- GETH_TAIKO=true
|
|
command:
|
|
- --bootnodes=enode://266a8e3b5e44201eca9c368d58aa59a7750295397e77d5b32aea2644f9962cbc4e1cb0543aab0480995a209408174413f65e5ce253d60bb83d22d3b8ab12eb89@34.142.239.251:30303,enode://264a7fc4bd1ee16cfc6eb420c643407bfc61b9c9534c5a39ba6e68c8759beda2fbeccefee8677385e3d99691eeb218da4bce7f5207cf38594ac0f6a53c128b9b@35.247.159.156:30303,enode://2d4e5b7ec0c57f9def6ebe72f9bd1f65c33c87b7dc38875bbb147c10e8ec9a8cd157558b695f9a02ac6ad789f300fab4f1f19d41273956491372e96880a3459f@34.126.90.255:30303,enode://57f4b29cd8b59dc8db74be51eedc6425df2a6265fad680c843be113232bbe632933541678783c2a5759d65eac2e2241c45a34e1c36254bccfe7f72e52707e561@104.197.107.1:30303,enode://87a68eef46cc1fe862becef1185ac969dfbcc050d9304f6be21599bfdcb45a0eb9235d3742776bc4528ac3ab631eba6816e9b47f6ee7a78cc5fcaeb10cd32574@35.232.246.122:30303
|
|
- --datadir=/root/.ethereum
|
|
- --db.engine=pebble
|
|
- --gcmode=full
|
|
- --maxpeers=50
|
|
- --metrics
|
|
- --metrics.addr=0.0.0.0
|
|
- --metrics.port=6060
|
|
- --nat=extip:${IP}
|
|
- --port=10251
|
|
- --rpc.gascap=600000000
|
|
- --rpc.txfeecap=0
|
|
- --state.scheme=path
|
|
- --syncmode=snap
|
|
- --http
|
|
- --http.addr=0.0.0.0
|
|
- --http.api=eth,net,web3,debug,admin,txpool,engine,taiko
|
|
- --http.port=8545
|
|
- --http.vhosts=*
|
|
- --ws
|
|
- --ws.addr=0.0.0.0
|
|
- --ws.api=eth,net,web3,debug,admin,txpool,engine,taiko
|
|
- --ws.origins=*
|
|
- --ws.port=8545
|
|
- --authrpc.addr=0.0.0.0
|
|
- --authrpc.jwtsecret=/jwtsecret
|
|
- --authrpc.vhosts=*
|
|
restart: unless-stopped
|
|
stop_grace_period: 5m
|
|
networks:
|
|
- chains
|
|
volumes:
|
|
- ${TAIKO_ALETHIA_GETH_PRUNED_PEBBLE_PATH_DATA:-taiko-alethia-geth-pruned-pebble-path}:/root/.ethereum
|
|
- .jwtsecret:/jwtsecret:ro
|
|
- /slowdisk:/slowdisk
|
|
logging: *logging-defaults
|
|
labels:
|
|
- prometheus-scrape.enabled=true
|
|
- prometheus-scrape.port=6060
|
|
- prometheus-scrape.path=/debug/metrics/prometheus
|
|
- traefik.enable=true
|
|
- traefik.http.middlewares.taiko-alethia-geth-pruned-pebble-path-stripprefix.stripprefix.prefixes=/taiko-alethia
|
|
- traefik.http.services.taiko-alethia-geth-pruned-pebble-path.loadbalancer.server.port=8545
|
|
- ${NO_SSL:-traefik.http.routers.taiko-alethia-geth-pruned-pebble-path.entrypoints=websecure}
|
|
- ${NO_SSL:-traefik.http.routers.taiko-alethia-geth-pruned-pebble-path.tls.certresolver=myresolver}
|
|
- ${NO_SSL:-traefik.http.routers.taiko-alethia-geth-pruned-pebble-path.rule=Host(`$DOMAIN`) && (Path(`/taiko-alethia`) || Path(`/taiko-alethia/`))}
|
|
- ${NO_SSL:+traefik.http.routers.taiko-alethia-geth-pruned-pebble-path.rule=Path(`/taiko-alethia`) || Path(`/taiko-alethia/`)}
|
|
- traefik.http.routers.taiko-alethia-geth-pruned-pebble-path.middlewares=taiko-alethia-geth-pruned-pebble-path-stripprefix, ipallowlist
|
|
|
|
taiko-alethia-node:
|
|
image: ${TAIKO_DRIVER_IMAGE:-us-docker.pkg.dev/evmchain/images/taiko-client}:${TAIKO_ALETHIA_DRIVER_VERSION:-taiko-alethia-client-v1.11.0}
|
|
ports:
|
|
- 15251:15251
|
|
- 15251:15251/udp
|
|
env_file:
|
|
- ./taiko/alethia.env
|
|
environment:
|
|
- ENABLE_PRECONFS_P2P=false
|
|
- JWT_SECRET=/jwtsecret
|
|
- L1_BEACON=${ETHEREUM_MAINNET_BEACON_REST}
|
|
- L1_WS=${ETHEREUM_MAINNET_EXECUTION_WS}
|
|
- L2_AUTH=http://taiko-alethia:8551
|
|
- L2_WS=ws://taiko-alethia:8545
|
|
- NODE_IMAGE=us-docker.pkg.dev/evmchain/images/taiko-client
|
|
- P2P_CHECK_POINT_SYNC_URL=https://rpc.mainnet.taiko.xyz
|
|
- P2P_SYNC=true
|
|
entrypoint: [taiko-client, driver]
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- taiko-alethia
|
|
networks:
|
|
- chains
|
|
volumes:
|
|
- .jwtsecret:/jwtsecret:ro
|
|
logging: *logging-defaults
|
|
labels:
|
|
- prometheus-scrape.enabled=false
|
|
|
|
volumes:
|
|
taiko-alethia-geth-pruned-pebble-path:
|
|
|
|
x-upstreams:
|
|
- id: $${ID}
|
|
labels:
|
|
provider: $${PROVIDER}
|
|
connection:
|
|
generic:
|
|
rpc:
|
|
url: $${RPC_URL}
|
|
ws:
|
|
frameSize: 20Mb
|
|
msgSize: 50Mb
|
|
url: $${WS_URL}
|
|
chain: taiko
|
|
method-groups:
|
|
enabled:
|
|
- debug
|
|
- filter
|
|
methods:
|
|
disabled:
|
|
# not compatible with path state scheme
|
|
- name: debug_traceBlockByHash
|
|
enabled:
|
|
- name: txpool_content # TODO: should be disabled for rollup nodes
|
|
# standard geth only
|
|
- name: debug_getRawBlock
|
|
- name: debug_getRawTransaction
|
|
- name: debug_getRawReceipts
|
|
- name: debug_getRawHeader
|
|
- name: debug_getBadBlocks
|
|
# non standard geth only slightly dangerous
|
|
- name: debug_intermediateRoots
|
|
- name: debug_dumpBlock
|
|
# standard geth and erigon
|
|
- name: debug_accountRange
|
|
- name: debug_getModifiedAccountsByNumber
|
|
- name: debug_getModifiedAccountsByHash
|
|
# non standard geth and erigon
|
|
- name: eth_getRawTransactionByHash
|
|
- name: eth_getRawTransactionByBlockHashAndIndex
|
|
... |