From 1602d44fa9a9bc029d4921eddb75abcb7d900910 Mon Sep 17 00:00:00 2001 From: Shawn <44221603+shaspitz@users.noreply.github.com> Date: Tue, 19 Dec 2023 02:50:58 -0800 Subject: [PATCH] docs and naming --- geth-poa/docker-compose.yml | 8 ++++---- geth-poa/local-l1/Dockerfile | 1 + geth-poa/local-l1/README.md | 2 ++ 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/geth-poa/docker-compose.yml b/geth-poa/docker-compose.yml index b27f21a4af9e..e28d4b74cb7a 100644 --- a/geth-poa/docker-compose.yml +++ b/geth-poa/docker-compose.yml @@ -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 diff --git a/geth-poa/local-l1/Dockerfile b/geth-poa/local-l1/Dockerfile index d769b844ef2f..47ad72b808a1 100644 --- a/geth-poa/local-l1/Dockerfile +++ b/geth-poa/local-l1/Dockerfile @@ -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 diff --git a/geth-poa/local-l1/README.md b/geth-poa/local-l1/README.md index ba170f593e54..620c49300da2 100644 --- a/geth-poa/local-l1/README.md +++ b/geth-poa/local-l1/README.md @@ -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.