Updating build pipeline to also build to local container registry as well as dockerhub
continuous-integration/drone/push Build encountered an error
Details
continuous-integration/drone/push Build encountered an error
Details
This commit is contained in:
parent
bae9187d24
commit
c5b3b3918d
21
.drone.yml
21
.drone.yml
|
@ -10,7 +10,7 @@ trigger:
|
||||||
- main
|
- main
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: docker-build
|
- name: docker-build-hub
|
||||||
image: thegeeklab/drone-docker-buildx
|
image: thegeeklab/drone-docker-buildx
|
||||||
privileged: true
|
privileged: true
|
||||||
settings:
|
settings:
|
||||||
|
@ -25,4 +25,21 @@ steps:
|
||||||
- linux/amd64
|
- linux/amd64
|
||||||
- linux/arm64
|
- linux/arm64
|
||||||
- linux/arm/v7
|
- linux/arm/v7
|
||||||
no_cache: true
|
no_cache: true
|
||||||
|
|
||||||
|
- name: docker-build-local-reg
|
||||||
|
image: thegeeklab/drone-docker-buildx
|
||||||
|
privileged: true
|
||||||
|
settings:
|
||||||
|
username: derekpaschal
|
||||||
|
password:
|
||||||
|
from_secret: local_container_repo_pass
|
||||||
|
repo: derekpaschal/dnsmasq
|
||||||
|
tags:
|
||||||
|
- latest
|
||||||
|
pull_image: true
|
||||||
|
platforms:
|
||||||
|
- linux/amd64
|
||||||
|
- linux/arm64
|
||||||
|
- linux/arm/v7
|
||||||
|
no_cache: true
|
||||||
|
|
Loading…
Reference in New Issue