30 lines
491 B
YAML
30 lines
491 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: build-images
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: docker
|
|
image: thegeeklab/drone-docker-buildx
|
|
privileged: true
|
|
settings:
|
|
registry: gargoton.coissac.eu
|
|
username:
|
|
from_secret: registry_username
|
|
password:
|
|
from_secret: registry_pwd
|
|
repo: gargoton.coissac.eu/image/bastionssh
|
|
- latest
|
|
- 0.0.1
|
|
platforms:
|
|
- linux/amd64
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
event:
|
|
exclude:
|
|
- pull_request |