59 lines
2.7 KiB
YAML
59 lines
2.7 KiB
YAML
version: '3.1'
|
|
|
|
services:
|
|
arb-connext-sepolia:
|
|
image: 'offchainlabs/nitro-node:${NITRO_VERSION:-v3.0.0-e6f81cb}'
|
|
stop_grace_period: 3m
|
|
user: root
|
|
volumes:
|
|
- 'arb-connext-sepolia:/persistent'
|
|
- './arb/sepolia/connext/baseConfig.json:/baseConfig.json'
|
|
expose:
|
|
- 8547 # http + ws
|
|
command:
|
|
- --conf.file=/baseConfig.json
|
|
- --persistent.ancient=/persistent/ancient
|
|
- --persistent.chain=/persistent/chain
|
|
- --persistent.global-config=/persistent/global-config
|
|
- --execution.caching.archive=true
|
|
- --execution.forwarding-target=https://rpc.connext-sepolia.gelato.digital
|
|
- --node.feed.input.url=wss://feed.connext-sepolia.gelato.digital
|
|
- --parent-chain.connection.url=${CONNEXT_SEPOLIA_PARENT_RPC}
|
|
- --http.addr=0.0.0.0
|
|
- --http.port=8547
|
|
- --http.vhosts=*
|
|
- --http.corsdomain=*
|
|
- --http.api=eth,net,web3,arb,txpool,debug
|
|
- --ws.port=8547
|
|
- --ws.addr=0.0.0.0
|
|
- --ws.origins=*
|
|
- --ws.api=eth,net,web3,arb,txpool,debug
|
|
- --node.data-availability.enable=true
|
|
- --node.data-availability.sequencer-inbox-address=0x7f5C1a58014E9DE69663CAc441bfa4C5d94b7E64
|
|
- --node.data-availability.parent-chain-node-url=${CONNEXT_SEPOLIA_PARENT_RPC}
|
|
- --parent-chain.blob-client.beacon-url=${CONNEXT_SEPOLIA_PARENT_BEACON_REST}
|
|
- --node.data-availability.rest-aggregator.enable=true
|
|
- --node.data-availability.rest-aggregator.urls=https://das.connext-sepolia.gelato.digital
|
|
- --metrics
|
|
- --metrics-server.addr=0.0.0.0
|
|
- --metrics-server.port=6070
|
|
- --log-type=json
|
|
- --node.sequencer=false
|
|
- --execution.sequencer.enable=false
|
|
- --node.staker.enable=false
|
|
- --node.batch-poster.enable=false
|
|
restart: unless-stopped
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.middlewares.connext-sepolia-stripprefix.stripprefix.prefixes=/connext-sepolia"
|
|
- "traefik.http.services.connext-sepolia.loadbalancer.server.port=8547"
|
|
- "traefik.http.routers.connext-sepolia.entrypoints=websecure"
|
|
- "traefik.http.routers.connext-sepolia.tls.certresolver=myresolver"
|
|
- "traefik.http.routers.connext-sepolia.rule=Host(`$DOMAIN`) && PathPrefix(`/connext-sepolia`)"
|
|
- "traefik.http.routers.connext-sepolia.middlewares=connext-sepolia-stripprefix, ipwhitelist"
|
|
networks:
|
|
- chains
|
|
|
|
volumes:
|
|
arb-connext-sepolia:
|