Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: broken start-erigon make target #2186

Merged
merged 3 commits into from
Nov 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions build/scripts/testing.mk
Original file line number Diff line number Diff line change
Expand Up @@ -200,16 +200,18 @@ start-besu: ## start an ephemeral `besu` node
start-erigon: ## start an ephemeral `erigon` node
rm -rf .tmp/erigon
docker run \
--rm -v $(PWD)/${TESTAPP_FILES_DIR}:/${TESTAPP_FILES_DIR} \
-v $(PWD)/.tmp:/.tmp \
erigontech/erigon:latest init \
--datadir .tmp/erigon \
${ETH_GENESIS_PATH}
--user 1000:1000 \
--rm -v $(PWD)/${TESTAPP_FILES_DIR}:/${TESTAPP_FILES_DIR} \
-v $(PWD)/.tmp:/.tmp \
erigontech/erigon:latest init \
--datadir /.tmp/erigon \
/${ETH_GENESIS_PATH}

docker run \
-p 30303:30303 \
-p 8545:8545 \
-p 8551:8551 \
--user 1000:1000 \
--rm -v $(PWD)/${TESTAPP_FILES_DIR}:/${TESTAPP_FILES_DIR} \
-v $(PWD)/.tmp:/.tmp \
erigontech/erigon:latest \
Expand All @@ -221,11 +223,11 @@ start-erigon: ## start an ephemeral `erigon` node
--http.corsdomain "*" \
--http.port 8545 \
--authrpc.addr 0.0.0.0 \
--authrpc.jwtsecret $(JWT_PATH) \
--authrpc.jwtsecret /$(JWT_PATH) \
--authrpc.vhosts "*" \
--networkid 80087 \
--db.size.limit 3000MB \
--datadir .tmp/erigon
--datadir /.tmp/erigon

start-ethereumjs:
rm -rf .tmp/ethereumjs
Expand Down
Loading