Trying out Drone CI/CD deployments
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Derek Paschal 2023-06-19 12:04:31 -05:00
parent 53dc4dabb4
commit 172d1b384d
1 changed files with 16 additions and 5 deletions

View File

@ -1,9 +1,20 @@
kind: pipeline
name: hello-world
name: build+push
type: docker
trigger:
event: push
branch: main
steps:
- name: say-hello
image: busybox
commands:
- echo hello-world
- name: docker
image: plugins/docker
settings:
username: derekpaschal
password:
from_secret: local_container_repo_pass
repo: git.paschalplace.com/derekpaschal/nginx-basic-lb
tags:
- latest
pull_image: true
platform: linux/amd64,linux/arm64