diff --git a/.github/workflows/build-hardhat-project.yaml b/.github/workflows/build-hardhat-project.yaml index 801df0ce3f..eba4c4637a 100644 --- a/.github/workflows/build-hardhat-project.yaml +++ b/.github/workflows/build-hardhat-project.yaml @@ -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: | diff --git a/create_image.sh b/create_image.sh index 370030aa5b..3c3e4ccc8a 100755 --- a/create_image.sh +++ b/create_image.sh @@ -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")