30 lines
657 B
YAML
30 lines
657 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: docker-amd
|
|
image: thegeeklab/drone-docker-buildx:23
|
|
privileged: true
|
|
settings:
|
|
dockerfile: Dockerfile-amd64
|
|
username: uzurka
|
|
password:
|
|
from_secret: docker_password
|
|
repo: uzurka/freebox-prometheus
|
|
tags: latest
|
|
platforms:
|
|
- linux/amd64
|
|
|
|
- name: docker-arm
|
|
image: thegeeklab/drone-docker-buildx:23
|
|
privileged: true
|
|
settings:
|
|
dockerfile: Dockerfile-arm
|
|
username: uzurka
|
|
password:
|
|
from_secret: docker_password
|
|
repo: uzurka/freebox-prometheus
|
|
tags: latest
|
|
platforms:
|
|
- linux/arm64
|
|
- linux/arm/v7 |