docker-backup-postgres/.drone.yml

59 lines
1.1 KiB
YAML
Raw Normal View History

2022-10-23 16:29:33 +00:00
---
kind: pipeline
name: build_amd64
platform:
os: linux
arch: amd64
steps:
- name: docker
image: plugins/docker
settings:
repo: ducampsv/docker-backup-postgres
auto_tag: "true"
auto_tag_suffix: amd64
username:
from_secret: docker_username
password:
from_secret: docker_password
---
kind: pipeline
name: build_arm
platform:
os: linux
arch: arm
steps:
- name: docker
image: plugins/docker
settings:
2022-10-23 16:47:57 +00:00
repo: ducampsv/docker-backup-postgres
2022-10-23 16:29:33 +00:00
auto_tag: "true"
auto_tag_suffix: arm
username:
from_secret: docker_username
password:
from_secret: docker_password
---
kind: pipeline
type: docker
name: manifest
steps:
- name: manifest
image: plugins/manifest
settings:
auto_tag: "true"
target: ducampsv/docker-backup-postgres:latest
2022-10-29 07:56:56 +00:00
template: ducampsv/docker-backup-postgres:ARCH
2022-10-23 16:29:33 +00:00
username:
from_secret: docker_username
password:
from_secret: docker_password
platforms:
- linux/amd64
2022-10-29 08:18:05 +00:00
#- linux/arm
2022-10-23 16:29:33 +00:00
depends_on:
- build_amd64