mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
add docker compose and fix piepline
This commit is contained in:
parent
1e3daef605
commit
ab9547d137
2 changed files with 9 additions and 2 deletions
5
.github/workflows/build-image.yaml
vendored
5
.github/workflows/build-image.yaml
vendored
|
|
@ -1,13 +1,14 @@
|
|||
name: Publish Docker image
|
||||
|
||||
on:
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
|
||||
jobs:
|
||||
push_to_registry:
|
||||
if: ${{ github.event.label.name == 'CI' }}
|
||||
if: ${{ github.event.label.name == 'CI' }})
|
||||
name: Push Docker image to Docker Hub
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
|
|||
6
docker-compose.yaml
Normal file
6
docker-compose.yaml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
version: "3.9"
|
||||
services:
|
||||
geth:
|
||||
image: anglyuboslav/go-eth-lab
|
||||
command:
|
||||
- --dev
|
||||
Loading…
Reference in a new issue