diff --git a/.github/workflows/build-on-label.yml b/.github/workflows/build-on-label.yml index b06d29180e..3217ff6ffa 100644 --- a/.github/workflows/build-on-label.yml +++ b/.github/workflows/build-on-label.yml @@ -27,6 +27,6 @@ jobs: uses: docker/build-push-action@v5 with: context: . - file: ./Dockerfile + file: ./Dockerfile.alltools push: true tags: ghcr.io/${{ github.repository_owner }}/go-ethereum:dev-latest \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000000..13a4ae7234 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,19 @@ +version: '3.8' + +services: + geth: + image: ghcr.io/radost5454/go-ethereum:dev-latest + ports: + - "8545:8545" + - "30303:30303" + volumes: + - ./data:/root/.ethereum + command: > + geth + --http + --http.addr 0.0.0.0 + --http.port 8545 + --http.api eth,net,web3,personal + --networkid 1337 + --nodiscover + --dev