add logical-backup build and push to delivery.yaml

This commit is contained in:
Felix Kunde 2020-12-16 11:30:51 +01:00
parent 5076e669cb
commit d1a20eb765
1 changed files with 10 additions and 0 deletions

View File

@ -80,3 +80,13 @@ pipeline:
export IMAGE export IMAGE
make docker make docker
make push make push
- id: build-logical-backup
type: script
steps:
- desc: Build image
cmd: |
cd docker/logical-backup
IMAGE="registry-write.opensource.zalan.do/acid/logical-backup"
docker build -t "$IMAGE" .
docker push "$IMAGE"