26 lines
570 B
YAML
26 lines
570 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
volumes:
|
|
- name: docker_socket
|
|
host:
|
|
path: /var/run/docker.sock
|
|
|
|
steps:
|
|
- name: build
|
|
image: alexviscreanu/buildx
|
|
commands:
|
|
- docker buildx ls
|
|
- docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 --progress plain -t registry.chrz.de:443/hello-ci:latest .
|
|
volumes:
|
|
- name: docker_socket
|
|
path: /var/run/docker.sock
|
|
- name: notify
|
|
image: drillster/drone-email
|
|
settings:
|
|
host: smtp
|
|
port: 25
|
|
skip_verify: true
|
|
from: drone@chrz.de
|
|
when:
|
|
status: [ success, failure ] |