mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
fix pipeline and container create sscript
This commit is contained in:
parent
7bede70560
commit
d415a372c2
2 changed files with 2 additions and 6 deletions
6
.github/workflows/build-hardhat-project.yaml
vendored
6
.github/workflows/build-hardhat-project.yaml
vendored
|
|
@ -14,13 +14,9 @@ jobs:
|
|||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20.9.0
|
||||
- name: Set up Docker Compose
|
||||
uses: docker/compose-cli@v1
|
||||
with:
|
||||
version: '3.0'
|
||||
|
||||
- name: Run geth devnet
|
||||
run: docker compose up -d
|
||||
run: docker run --name go-ethereum -p 8545:8545 -p 30303:30303 anglyuboslav/geth --dev --http --http.addr 0.0.0.0
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Set the name of the container you want to create an image from
|
||||
container_name="limechain-task-geth-1"
|
||||
container_name="go-ethereum"
|
||||
|
||||
# Get the container ID by filtering the output of `docker ps`
|
||||
container_id=$(docker ps -qf "name=$container_name")
|
||||
|
|
|
|||
Loading…
Reference in a new issue