docker-bitcoin-core/.drone.yml
Kieran b064632f4a
Some checks failed
continuous-integration/drone/push Build is failing
build 26
2024-03-15 18:42:56 +00:00

22 lines
399 B
YAML

---
kind: pipeline
type: kubernetes
name: default
metadata:
namespace: git
steps:
- name: build
image: docker
privileged: true
environment:
TOKEN:
from_secret: gitea
commands:
- dockerd &
- docker login -u kieran -p $TOKEN git.v0l.io
- docker buildx build -t git.v0l.io/kieran/bitcoin:latest --push 26/
- kill $(cat /var/run/docker.pid)