bob-sepolia: use local genesis/rollup for all variants, drop Conduit URLs
Conduit's downloaded genesis.json/rollup.json are faulty (rollup.json lacks chain_op_config + post-Fjord fork times, crashing op-node v1.19.0). The fixed configs live in op/bob/sepolia/. Removed the client_genesis / node_rollup_json Conduit URLs from context.yml and regenerated, so all 7 bob-sepolia composes (geth + reth) now bind-mount ./op/bob/sepolia:/config and drop the curl-from-Conduit init containers. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -29,22 +29,6 @@ x-logging-defaults: &logging-defaults
|
||||
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
||||
|
||||
services:
|
||||
bob-sepolia-archive-init:
|
||||
image: alpine:3.21
|
||||
user: root
|
||||
entrypoint: [/bin/sh, -c]
|
||||
command:
|
||||
- |
|
||||
apk add --no-cache curl wget
|
||||
mkdir -p /config
|
||||
[ -f /config/genesis.json ] || curl -fsSL -o /config/genesis.json "https://api.conduit.xyz/file/v1/optimism/genesis/bob-sepolia-dm6uw0yhh3"
|
||||
restart: no
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_LEVELDB_HASH_CONFIG:-bob-sepolia-op-geth-archive-leveldb-hash_config}:/config
|
||||
logging: *logging-defaults
|
||||
|
||||
bob-sepolia-archive:
|
||||
image: ${BOB_GETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth}:${BOB_SEPOLIA_GETH_VERSION:-v1.101702.2}
|
||||
sysctls:
|
||||
@@ -102,14 +86,11 @@ services:
|
||||
- --authrpc.vhosts=*
|
||||
restart: unless-stopped
|
||||
stop_grace_period: 5m
|
||||
depends_on:
|
||||
bob-sepolia-archive-init:
|
||||
condition: service_completed_successfully
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_LEVELDB_HASH_CONFIG:-bob-sepolia-op-geth-archive-leveldb-hash_config}:/config
|
||||
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_LEVELDB_HASH_DATA:-bob-sepolia-op-geth-archive-leveldb-hash}:/data
|
||||
- ./op/bob/sepolia:/config
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
- /slowdisk:/slowdisk
|
||||
logging: *logging-defaults
|
||||
@@ -126,21 +107,6 @@ services:
|
||||
- ${NO_SSL:+traefik.http.routers.bob-sepolia-op-geth-archive-leveldb-hash.rule=Path(`/bob-sepolia-archive`) || Path(`/bob-sepolia-archive/`)}
|
||||
- traefik.http.routers.bob-sepolia-op-geth-archive-leveldb-hash.middlewares=bob-sepolia-op-geth-archive-leveldb-hash-stripprefix, ipallowlist
|
||||
|
||||
bob-sepolia-archive-node-init:
|
||||
image: alpine:3.20
|
||||
entrypoint: [/bin/sh, -c]
|
||||
command:
|
||||
- |
|
||||
apk add --no-cache ca-certificates curl
|
||||
mkdir -p /config
|
||||
[ -f /config/rollup.json ] || curl -fsSL -o /config/rollup.json "https://api.conduit.xyz/file/v1/optimism/rollup/bob-sepolia-dm6uw0yhh3"
|
||||
restart: no
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_LEVELDB_HASH_NODE_CONFIG:-bob-sepolia-op-geth-archive-leveldb-hash_node_config}:/config
|
||||
logging: *logging-defaults
|
||||
|
||||
bob-sepolia-archive-node:
|
||||
image: ${BOB_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${BOB_SEPOLIA_NODE_VERSION:-v1.19.0}
|
||||
ports:
|
||||
@@ -175,14 +141,11 @@ services:
|
||||
entrypoint: [op-node]
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
bob-sepolia-archive-node-init:
|
||||
condition: service_completed_successfully
|
||||
bob-sepolia-archive:
|
||||
condition: service_started
|
||||
- bob-sepolia-archive
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_LEVELDB_HASH_NODE_CONFIG:-bob-sepolia-op-geth-archive-leveldb-hash_node_config}:/config
|
||||
- ./op/bob/sepolia:/config
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
logging: *logging-defaults
|
||||
labels:
|
||||
@@ -200,11 +163,6 @@ services:
|
||||
|
||||
volumes:
|
||||
bob-sepolia-op-geth-archive-leveldb-hash:
|
||||
bob-sepolia-op-geth-archive-leveldb-hash_config:
|
||||
bob-sepolia-op-geth-archive-leveldb-hash_node_config:
|
||||
|
||||
x-ephemeral-volumes:
|
||||
- bob-sepolia-op-geth-archive-leveldb-hash_config
|
||||
|
||||
x-upstreams:
|
||||
- id: $${ID}
|
||||
|
||||
@@ -29,22 +29,6 @@ x-logging-defaults: &logging-defaults
|
||||
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
||||
|
||||
services:
|
||||
bob-sepolia-archive-init:
|
||||
image: alpine:3.21
|
||||
user: root
|
||||
entrypoint: [/bin/sh, -c]
|
||||
command:
|
||||
- |
|
||||
apk add --no-cache curl wget
|
||||
mkdir -p /config
|
||||
[ -f /config/genesis.json ] || curl -fsSL -o /config/genesis.json "https://api.conduit.xyz/file/v1/optimism/genesis/bob-sepolia-dm6uw0yhh3"
|
||||
restart: no
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_PEBBLE_HASH_CONFIG:-bob-sepolia-op-geth-archive-pebble-hash_config}:/config
|
||||
logging: *logging-defaults
|
||||
|
||||
bob-sepolia-archive:
|
||||
image: ${BOB_GETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth}:${BOB_SEPOLIA_GETH_VERSION:-v1.101702.2}
|
||||
sysctls:
|
||||
@@ -102,14 +86,11 @@ services:
|
||||
- --authrpc.vhosts=*
|
||||
restart: unless-stopped
|
||||
stop_grace_period: 5m
|
||||
depends_on:
|
||||
bob-sepolia-archive-init:
|
||||
condition: service_completed_successfully
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_PEBBLE_HASH_CONFIG:-bob-sepolia-op-geth-archive-pebble-hash_config}:/config
|
||||
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_PEBBLE_HASH_DATA:-bob-sepolia-op-geth-archive-pebble-hash}:/data
|
||||
- ./op/bob/sepolia:/config
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
- /slowdisk:/slowdisk
|
||||
logging: *logging-defaults
|
||||
@@ -126,21 +107,6 @@ services:
|
||||
- ${NO_SSL:+traefik.http.routers.bob-sepolia-op-geth-archive-pebble-hash.rule=Path(`/bob-sepolia-archive`) || Path(`/bob-sepolia-archive/`)}
|
||||
- traefik.http.routers.bob-sepolia-op-geth-archive-pebble-hash.middlewares=bob-sepolia-op-geth-archive-pebble-hash-stripprefix, ipallowlist
|
||||
|
||||
bob-sepolia-archive-node-init:
|
||||
image: alpine:3.20
|
||||
entrypoint: [/bin/sh, -c]
|
||||
command:
|
||||
- |
|
||||
apk add --no-cache ca-certificates curl
|
||||
mkdir -p /config
|
||||
[ -f /config/rollup.json ] || curl -fsSL -o /config/rollup.json "https://api.conduit.xyz/file/v1/optimism/rollup/bob-sepolia-dm6uw0yhh3"
|
||||
restart: no
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_PEBBLE_HASH_NODE_CONFIG:-bob-sepolia-op-geth-archive-pebble-hash_node_config}:/config
|
||||
logging: *logging-defaults
|
||||
|
||||
bob-sepolia-archive-node:
|
||||
image: ${BOB_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${BOB_SEPOLIA_NODE_VERSION:-v1.19.0}
|
||||
ports:
|
||||
@@ -175,14 +141,11 @@ services:
|
||||
entrypoint: [op-node]
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
bob-sepolia-archive-node-init:
|
||||
condition: service_completed_successfully
|
||||
bob-sepolia-archive:
|
||||
condition: service_started
|
||||
- bob-sepolia-archive
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_PEBBLE_HASH_NODE_CONFIG:-bob-sepolia-op-geth-archive-pebble-hash_node_config}:/config
|
||||
- ./op/bob/sepolia:/config
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
logging: *logging-defaults
|
||||
labels:
|
||||
@@ -200,11 +163,6 @@ services:
|
||||
|
||||
volumes:
|
||||
bob-sepolia-op-geth-archive-pebble-hash:
|
||||
bob-sepolia-op-geth-archive-pebble-hash_config:
|
||||
bob-sepolia-op-geth-archive-pebble-hash_node_config:
|
||||
|
||||
x-ephemeral-volumes:
|
||||
- bob-sepolia-op-geth-archive-pebble-hash_config
|
||||
|
||||
x-upstreams:
|
||||
- id: $${ID}
|
||||
|
||||
@@ -29,22 +29,6 @@ x-logging-defaults: &logging-defaults
|
||||
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
||||
|
||||
services:
|
||||
bob-sepolia-init:
|
||||
image: alpine:3.21
|
||||
user: root
|
||||
entrypoint: [/bin/sh, -c]
|
||||
command:
|
||||
- |
|
||||
apk add --no-cache curl wget
|
||||
mkdir -p /config
|
||||
[ -f /config/genesis.json ] || curl -fsSL -o /config/genesis.json "https://api.conduit.xyz/file/v1/optimism/genesis/bob-sepolia-dm6uw0yhh3"
|
||||
restart: no
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_HASH_CONFIG:-bob-sepolia-op-geth-pruned-pebble-hash_config}:/config
|
||||
logging: *logging-defaults
|
||||
|
||||
bob-sepolia:
|
||||
image: ${BOB_GETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth}:${BOB_SEPOLIA_GETH_VERSION:-v1.101702.2}
|
||||
sysctls:
|
||||
@@ -102,14 +86,11 @@ services:
|
||||
- --authrpc.vhosts=*
|
||||
restart: unless-stopped
|
||||
stop_grace_period: 5m
|
||||
depends_on:
|
||||
bob-sepolia-init:
|
||||
condition: service_completed_successfully
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_HASH_CONFIG:-bob-sepolia-op-geth-pruned-pebble-hash_config}:/config
|
||||
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_HASH_DATA:-bob-sepolia-op-geth-pruned-pebble-hash}:/data
|
||||
- ./op/bob/sepolia:/config
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
- /slowdisk:/slowdisk
|
||||
logging: *logging-defaults
|
||||
@@ -126,21 +107,6 @@ services:
|
||||
- ${NO_SSL:+traefik.http.routers.bob-sepolia-op-geth-pruned-pebble-hash.rule=Path(`/bob-sepolia`) || Path(`/bob-sepolia/`)}
|
||||
- traefik.http.routers.bob-sepolia-op-geth-pruned-pebble-hash.middlewares=bob-sepolia-op-geth-pruned-pebble-hash-stripprefix, ipallowlist
|
||||
|
||||
bob-sepolia-node-init:
|
||||
image: alpine:3.20
|
||||
entrypoint: [/bin/sh, -c]
|
||||
command:
|
||||
- |
|
||||
apk add --no-cache ca-certificates curl
|
||||
mkdir -p /config
|
||||
[ -f /config/rollup.json ] || curl -fsSL -o /config/rollup.json "https://api.conduit.xyz/file/v1/optimism/rollup/bob-sepolia-dm6uw0yhh3"
|
||||
restart: no
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_HASH_NODE_CONFIG:-bob-sepolia-op-geth-pruned-pebble-hash_node_config}:/config
|
||||
logging: *logging-defaults
|
||||
|
||||
bob-sepolia-node:
|
||||
image: ${BOB_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${BOB_SEPOLIA_NODE_VERSION:-v1.19.0}
|
||||
ports:
|
||||
@@ -175,14 +141,11 @@ services:
|
||||
entrypoint: [op-node]
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
bob-sepolia-node-init:
|
||||
condition: service_completed_successfully
|
||||
bob-sepolia:
|
||||
condition: service_started
|
||||
- bob-sepolia
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_HASH_NODE_CONFIG:-bob-sepolia-op-geth-pruned-pebble-hash_node_config}:/config
|
||||
- ./op/bob/sepolia:/config
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
logging: *logging-defaults
|
||||
labels:
|
||||
@@ -200,11 +163,6 @@ services:
|
||||
|
||||
volumes:
|
||||
bob-sepolia-op-geth-pruned-pebble-hash:
|
||||
bob-sepolia-op-geth-pruned-pebble-hash_config:
|
||||
bob-sepolia-op-geth-pruned-pebble-hash_node_config:
|
||||
|
||||
x-ephemeral-volumes:
|
||||
- bob-sepolia-op-geth-pruned-pebble-hash_config
|
||||
|
||||
x-upstreams:
|
||||
- id: $${ID}
|
||||
|
||||
@@ -29,22 +29,6 @@ x-logging-defaults: &logging-defaults
|
||||
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
||||
|
||||
services:
|
||||
bob-sepolia-init:
|
||||
image: alpine:3.21
|
||||
user: root
|
||||
entrypoint: [/bin/sh, -c]
|
||||
command:
|
||||
- |
|
||||
apk add --no-cache curl wget
|
||||
mkdir -p /config
|
||||
[ -f /config/genesis.json ] || curl -fsSL -o /config/genesis.json "https://api.conduit.xyz/file/v1/optimism/genesis/bob-sepolia-dm6uw0yhh3"
|
||||
restart: no
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_PATH_CONFIG:-bob-sepolia-op-geth-pruned-pebble-path_config}:/config
|
||||
logging: *logging-defaults
|
||||
|
||||
bob-sepolia:
|
||||
image: ${BOB_GETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth}:${BOB_SEPOLIA_GETH_VERSION:-v1.101702.2}
|
||||
sysctls:
|
||||
@@ -102,14 +86,11 @@ services:
|
||||
- --authrpc.vhosts=*
|
||||
restart: unless-stopped
|
||||
stop_grace_period: 5m
|
||||
depends_on:
|
||||
bob-sepolia-init:
|
||||
condition: service_completed_successfully
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_PATH_CONFIG:-bob-sepolia-op-geth-pruned-pebble-path_config}:/config
|
||||
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_PATH_DATA:-bob-sepolia-op-geth-pruned-pebble-path}:/data
|
||||
- ./op/bob/sepolia:/config
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
- /slowdisk:/slowdisk
|
||||
logging: *logging-defaults
|
||||
@@ -126,21 +107,6 @@ services:
|
||||
- ${NO_SSL:+traefik.http.routers.bob-sepolia-op-geth-pruned-pebble-path.rule=Path(`/bob-sepolia`) || Path(`/bob-sepolia/`)}
|
||||
- traefik.http.routers.bob-sepolia-op-geth-pruned-pebble-path.middlewares=bob-sepolia-op-geth-pruned-pebble-path-stripprefix, ipallowlist
|
||||
|
||||
bob-sepolia-node-init:
|
||||
image: alpine:3.20
|
||||
entrypoint: [/bin/sh, -c]
|
||||
command:
|
||||
- |
|
||||
apk add --no-cache ca-certificates curl
|
||||
mkdir -p /config
|
||||
[ -f /config/rollup.json ] || curl -fsSL -o /config/rollup.json "https://api.conduit.xyz/file/v1/optimism/rollup/bob-sepolia-dm6uw0yhh3"
|
||||
restart: no
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_PATH_NODE_CONFIG:-bob-sepolia-op-geth-pruned-pebble-path_node_config}:/config
|
||||
logging: *logging-defaults
|
||||
|
||||
bob-sepolia-node:
|
||||
image: ${BOB_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${BOB_SEPOLIA_NODE_VERSION:-v1.19.0}
|
||||
ports:
|
||||
@@ -175,14 +141,11 @@ services:
|
||||
entrypoint: [op-node]
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
bob-sepolia-node-init:
|
||||
condition: service_completed_successfully
|
||||
bob-sepolia:
|
||||
condition: service_started
|
||||
- bob-sepolia
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_PATH_NODE_CONFIG:-bob-sepolia-op-geth-pruned-pebble-path_node_config}:/config
|
||||
- ./op/bob/sepolia:/config
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
logging: *logging-defaults
|
||||
labels:
|
||||
@@ -200,11 +163,6 @@ services:
|
||||
|
||||
volumes:
|
||||
bob-sepolia-op-geth-pruned-pebble-path:
|
||||
bob-sepolia-op-geth-pruned-pebble-path_config:
|
||||
bob-sepolia-op-geth-pruned-pebble-path_node_config:
|
||||
|
||||
x-ephemeral-volumes:
|
||||
- bob-sepolia-op-geth-pruned-pebble-path_config
|
||||
|
||||
x-upstreams:
|
||||
- id: $${ID}
|
||||
|
||||
Reference in New Issue
Block a user