45 lines
726 B
YAML
45 lines
726 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: build_amd64
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
steps:
|
|
- name: push docker image
|
|
image: plugins/docker
|
|
settings:
|
|
repo: j10l/nsd-docker
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
|
|
volumes:
|
|
- name: docker_sock
|
|
host:
|
|
path: /var/run/docker.sock
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: build_amd64
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
steps:
|
|
- name: push docker image
|
|
image: plugins/docker
|
|
settings:
|
|
repo: j10l/nsd-docker
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
|
|
volumes:
|
|
- name: docker_sock
|
|
host:
|
|
path: /var/run/docker.sock
|
|
|