no path
This commit is contained in:
101
zircuit/op-geth/zircuit-testnet-op-geth-pruned-pebble-hash.yml
Normal file
101
zircuit/op-geth/zircuit-testnet-op-geth-pruned-pebble-hash.yml
Normal file
@@ -0,0 +1,101 @@
|
||||
|
||||
|
||||
services:
|
||||
zircuit-testnet:
|
||||
image: zircuit1/l2-geth:e81568966f2a42a57b1347fb1dffdd5257dde73a
|
||||
volumes:
|
||||
- "zircuit-testnet-op-geth-pruned-pebble-hash:/data"
|
||||
- ".jwtsecret:/jwtsecret:ro"
|
||||
- ./zircuit_testnet_config:/config
|
||||
environment:
|
||||
- "GETH_GCMODE=full"
|
||||
- "GETH_SYNCMODE=full"
|
||||
- "GETH_STATE_SCHEME=hash"
|
||||
- "GETH_DB_ENGINE=pebble"
|
||||
- "GETH_NAT=extip:${IP}"
|
||||
- "GETH_PORT=10357"
|
||||
- "GETH_DATADIR=/data"
|
||||
ports:
|
||||
- "10357:10357"
|
||||
- "10357:10357/udp"
|
||||
env_file:
|
||||
- ./zircuit_testnet_config/env
|
||||
entrypoint: ["/bin/sh", "-c", "[ ! -d /data/geth ] && geth init /config/genesis.json; exec geth \"$@\""]
|
||||
command:
|
||||
- --http
|
||||
- --http.corsdomain=*
|
||||
- --http.vhosts=*
|
||||
- --http.addr=0.0.0.0
|
||||
- --http.port=8545
|
||||
- --http.api=eth,web3,debug,txpool,admin,net
|
||||
- --ws
|
||||
- --ws.addr=0.0.0.0
|
||||
- --ws.port=8545
|
||||
- --ws.origins=*
|
||||
- --ws.api=eth,net,debug,web3
|
||||
- --rpc.txfeecap=10
|
||||
- --authrpc.addr=0.0.0.0
|
||||
- --authrpc.port=8551
|
||||
- --authrpc.vhosts=*
|
||||
- --authrpc.jwtsecret=/jwtsecret
|
||||
- --circuit-capacity-check=false
|
||||
- --txpool.globalqueue=1024
|
||||
- --config=/config/gethconfig.toml
|
||||
- --rollup.disabletxpoolgossip=true
|
||||
|
||||
networks:
|
||||
- chains
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.middlewares.zircuit-testnet-op-geth-pruned-pebble-hash-stripprefix.stripprefix.prefixes=/zircuit-testnet"
|
||||
- "traefik.http.services.zircuit-testnet-op-geth-pruned-pebble-hash.loadbalancer.server.port=80"
|
||||
- "traefik.http.routers.zircuit-testnet-op-geth-pruned-pebble-hash.entrypoints=websecure"
|
||||
- "traefik.http.routers.zircuit-testnet-op-geth-pruned-pebble-hash.tls.certresolver=myresolver"
|
||||
- "traefik.http.routers.zircuit-testnet-op-geth-pruned-pebble-hash.rule=Host(`$DOMAIN`) && PathPrefix(`/zircuit-testnet`)"
|
||||
- "traefik.http.routers.zircuit-testnet-op-geth-pruned-pebble-hash.middlewares=zircuit-testnet-op-geth-pruned-pebble-hash-stripprefix, ipwhitelist"
|
||||
|
||||
|
||||
zircuit-testnet-node:
|
||||
depends_on:
|
||||
- zircuit-testnet
|
||||
image: zircuit1/op-node:e81568966f2a42a57b1347fb1dffdd5257dde73a
|
||||
ports:
|
||||
- "15357:15357"
|
||||
- "15357:15357/udp"
|
||||
volumes:
|
||||
- ".jwtsecret:/jwtsecret:ro"
|
||||
- ./zircuit_testnet_config:/config
|
||||
networks:
|
||||
- chains
|
||||
env_file:
|
||||
- ./zircuit_testnet_config/env
|
||||
environment:
|
||||
OP_NODE_L1_ETH_RPC: ${ETHEREUM_SEPOLIA_EXECUTION_RPC}
|
||||
OP_NODE_L2_ENGINE_RPC: http://zircuit-testnet:8551
|
||||
OP_NODE_ROLLUP_CONFIG: /config/rollup.json
|
||||
OP_NODE_RPC_ADDR: "0.0.0.0"
|
||||
OP_NODE_RPC_PORT: 9545
|
||||
OP_NODE_L1_RPC_KIND: "basic"
|
||||
OP_NODE_L2_ENGINE_AUTH: /jwtsecret
|
||||
OP_NODE_VERIFIER_L1_CONFS: 0
|
||||
OP_NODE_SEQUENCER_ENABLED: "false"
|
||||
OP_NODE_SEQUENCER_STOPPED: "false"
|
||||
OP_NODE_SEQUENCER_MAX_SAFE_LAG: 0
|
||||
OP_NODE_SEQUENCER_L1_CONFS: 0
|
||||
OP_NODE_L1_EPOCH_POLL_INTERVAL: 384s
|
||||
OP_NODE_HEARTBEAT_ENABLED: "false"
|
||||
OP_NODE_L1_BEACON: ${ETHEREUM_SEPOLIA_BEACON_REST}
|
||||
OP_NODE_SYNCMODE: consensus-layer
|
||||
OP_NODE_P2P_LISTEN_IP: "0.0.0.0"
|
||||
OP_NODE_P2P_LISTEN_TCP_PORT: 15357
|
||||
OP_NODE_P2P_LISTEN_UDP_PORT: 15357
|
||||
OP_NODE_P2P_PEER_SCORING: light
|
||||
OP_NODE_P2P_PEER_BANNING: "true"
|
||||
OP_NODE_P2P_STATIC: ${ZIRCUIT_MAINNET_STATIC_PEERS}
|
||||
OP_NODE_P2P_ADVERTISE_IP: ${IP}
|
||||
OP_NODE_LOG_LEVEL: info
|
||||
OP_NODE_LOG_FORMAT: json
|
||||
OP_NODE_LOG_COLOR: "false"
|
||||
|
||||
volumes:
|
||||
zircuit-testnet-op-geth-pruned-pebble-hash:
|
||||
Reference in New Issue
Block a user