mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Merge pull request #10 from lyuboangelov/feature/add-workflow
add docker compose and fix piepline
This commit is contained in:
commit
a8c27b4287
2 changed files with 9 additions and 2 deletions
3
.github/workflows/build-image.yaml
vendored
3
.github/workflows/build-image.yaml
vendored
|
|
@ -5,9 +5,10 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
push_to_registry:
|
push_to_registry:
|
||||||
if: ${{ github.event.label.name == 'CI' }}
|
if: ${{ github.event.label.name == 'CI' }})
|
||||||
name: Push Docker image to Docker Hub
|
name: Push Docker image to Docker Hub
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
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