Files
ethereum-rpc-docker/arb/nitro/arbitrum-sepolia-nitro-archive-pebble-hash.yml
2025-03-27 09:42:17 +01:00

56 lines
2.4 KiB
YAML

services:
arbitrum-sepolia-archive:
image: 'offchainlabs/nitro-node:${NITRO_VERSION:-v3.5.3-0a9c975}'
stop_grace_period: 3m
user: root
volumes:
- 'arbitrum-sepolia-nitro-archive-pebble-hash:/root/.arbitrum'
- './tmp/arbitrum-sepolia-archive:/tmp'
expose:
- 8545
command:
- --chain.id=421614
- --execution.caching.state-scheme=hash
- --execution.rpc.gas-cap=600000000
- --execution.caching.archive=true
- --execution.sequencer.enable=false
- --persistent.db-engine=pebble
- --parent-chain.connection.url=${ETHEREUM_MAINNET_EXECUTION_RPC}
- --parent-chain.blob-client.beacon-url=${ETHEREUM_SEPOLIA_BEACON_REST}
- --http.addr=0.0.0.0
- --http.port=8545
- --http.vhosts=*
- --http.corsdomain=*
- --http.api=eth,net,web3,arb,txpool,debug
- --ws.port=8545
- --ws.addr=0.0.0.0
- --ws.origins=*
- --ws.api=eth,net,web3,arb,txpool,debug
- --metrics
- --metrics-server.addr=0.0.0.0
- --metrics-server.port=6070
- --log-type=json
- --node.sequencer=false
- --node.staker.enable=false
- --node.batch-poster.enable=false
- --init.latest=archive
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.middlewares.arbitrum-sepolia-nitro-archive-pebble-hash-stripprefix.stripprefix.prefixes=/arbitrum-sepolia-archive"
- "traefik.http.services.arbitrum-sepolia-nitro-archive-pebble-hash.loadbalancer.server.port=8545"
- "traefik.http.routers.arbitrum-sepolia-nitro-archive-pebble-hash.entrypoints=websecure"
- "traefik.http.routers.arbitrum-sepolia-nitro-archive-pebble-hash.tls.certresolver=myresolver"
- "traefik.http.routers.arbitrum-sepolia-nitro-archive-pebble-hash.rule=Host(`$DOMAIN`) && PathPrefix(`/arbitrum-sepolia-archive`)"
- "traefik.http.routers.arbitrum-sepolia-nitro-archive-pebble-hash.middlewares=arbitrum-sepolia-nitro-archive-pebble-hash-stripprefix, ipwhitelist"
networks:
- chains
volumes:
arbitrum-sepolia-nitro-archive-pebble-hash: