docs and naming

This commit is contained in:
Shawn 2023-12-19 02:50:58 -08:00
parent 64cb65e90c
commit 1602d44fa9
3 changed files with 7 additions and 4 deletions

View file

@ -80,7 +80,6 @@ services:
}
]
sl-node2:
build:
context: ..
@ -120,7 +119,7 @@ services:
}
]
# L1 geth service only used for local dev
# L1 geth services only used for local dev
l1-bootnode:
build:
context: .
@ -136,7 +135,8 @@ services:
- geth-data-l1-bootnode:/data
profiles:
- local_l1
l1-first-signer:
l1-node1:
build:
context: .
dockerfile: ./local-l1/Dockerfile
@ -154,7 +154,7 @@ services:
profiles:
- local_l1
l1-second-signer:
l1-node2:
build:
context: .
dockerfile: ./local-l1/Dockerfile

View file

@ -1,3 +1,4 @@
# Local L1 nodes are NOT built from source
FROM ethereum/client-go:v1.13.4 as builder
RUN apk add --no-cache jq

View file

@ -1,3 +1,5 @@
# Local L1
This directory contains a genesis and dockerfile for running a local L1 chain in addition to the mev-commit chain.
Nodes for the local L1 chain are built from geth v1.13.4 images, not built from source code in this repo like the mev-commit chain.