NostrServices/.drone.yml
Kieran 1360753d15
All checks were successful
continuous-integration/drone/push Build is passing
Run docker in background
2024-01-10 10:25:04 +00:00

23 lines
478 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 build -t git.v0l.io/kieran/nostr-services:latest -f NostrServices/Dockerfile .
- docker push git.v0l.io/kieran/nostr-services:latest
- kill $(cat /var/run/docker.pid)