@@ -29,16 +29,16 @@ curl -sSfL https://raw.githubusercontent.com/flashbots/builder-playground/main/i
2929mkdir buildernet-dev && cd buildernet-dev
3030builder-playground generate buildernet/mkosi
3131
32- # 3. Point to the VM image
33- # - you can point to a local file or URL
34- # - alternatively you can set this in playground.yaml (see below)
32+ # 3. Point to the VM image — local path, https:// URL, or set in playground.yaml.
33+ # Skip to download the latest pre-built image automatically.
34+ # Pre-built images: https://downloads.buildernet.org/buildernet-playground-images/
3535export BUILDERNET_IMAGE=/path/to/buildernet-qemu.qcow2
3636
3737# 4. Start (runs L1 Docker stack + VM in the background)
3838builder-playground start playground.yaml --bind-external --detached
3939
40- # 5. Wait for the VM to boot (~60-90s) then check readiness
41- ./scripts/operator-api-health .sh # repeat until you see "OK"
40+ # 5. Wait for the VM to be ready
41+ ./scripts/readyz .sh
4242
4343# 6. Verify by sending a transaction
4444builder-playground test --rpc http://localhost:18645 --el-rpc http://localhost:8545
@@ -102,7 +102,7 @@ For Docker service logs (Reth, Lighthouse, mev-boost-relay, etc.), use `builder-
102102
103103| Variable | Default | Description |
104104|----------|---------|-------------|
105- | `BUILDERNET_IMAGE` | *(set in playground.yaml)* | Path or URL to the VM qcow2 image |
105+ | `BUILDERNET_IMAGE` | pre-built image URL (see playground.yaml) | Local path or https:// URL to the VM qcow2 image |
106106| `QEMU_CPU` | `8` | Number of CPU cores |
107107| `QEMU_RAM` | `32G` | Memory allocation |
108108| `QEMU_ACCEL` | `kvm` | Acceleration (`kvm` or `tcg`) |
@@ -163,6 +163,7 @@ buildernet-dev/
163163 ├── prepare.sh # Download/copy image + create data disk
164164 ├── start.sh # Start the QEMU VM
165165 ├── stop.sh # Stop the QEMU VM
166+ ├── readyz.sh # Wait for VM readiness (/readyz on HAProxy)
166167 ├── console.sh # Serial console
167168 ├── clean.sh # Remove runtime files
168169 └── operator-api-*.sh # Operator API helpers
0 commit comments