Skip to content

Commit 8496c15

Browse files
joshuacolvin0claude
andcommitted
Fix minio healthcheck and remove rollupcreator sequencer dependency
- minio healthcheck: replace curl (not in image) with mc ready local - rollupcreator: remove depends_on sequencer (service_healthy) — the sequencer config doesn't exist yet during init, and rollupcreator only needs L1 (geth) to deploy contracts Both found during integration testing with --l2-tx-filtering. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 83c2c59 commit 8496c15

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

docker-compose.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -462,8 +462,6 @@ services:
462462
depends_on:
463463
geth:
464464
condition: service_healthy
465-
sequencer:
466-
condition: service_healthy
467465
pid: host
468466
build:
469467
context: rollupcreator/
@@ -603,7 +601,8 @@ services:
603601
MINIO_ROOT_PASSWORD: minioadmin
604602
command: server /data --console-address ":9001"
605603
healthcheck:
606-
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
604+
# minio image ships mc (not curl)
605+
test: ["CMD", "mc", "ready", "local"]
607606
interval: 5s
608607
timeout: 5s
609608
retries: 5

0 commit comments

Comments
 (0)