add logical-backup build and push to delivery.yaml
This commit is contained in:
parent
5076e669cb
commit
d1a20eb765
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue