Updating build pipeline to also build to local container registry as well as dockerhub
continuous-integration/drone/push Build encountered an error Details

This commit is contained in:
Derek Paschal 2023-06-19 22:58:33 -05:00
parent bae9187d24
commit c5b3b3918d
1 changed files with 19 additions and 2 deletions

View File

@ -10,7 +10,7 @@ trigger:
- main
steps:
- name: docker-build
- name: docker-build-hub
image: thegeeklab/drone-docker-buildx
privileged: true
settings:
@ -26,3 +26,20 @@ steps:
- linux/arm64
- linux/arm/v7
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