Links
Comment on page

Update the Service with Deploy Pipe

Update images with DuploCloud's BitBucket Deploy Pipe
When your pipeline has updated an image, you'll push it to your deployed service. DuploCloud's custom Bitbucket Pipe does this, updating any service with the latest image.
For example, to update a Service (myservice) for a Tenant (sometenant) when a new Git tag is published (myimage:${BITBUCKET_TAG}), use this code:
pipelines:
tags:
'**':
- step:
name: Update Service
script:
- pipe: docker://duplocloud/bitbucket-deploy-pipe:0.1.0
variables:
DUPLO_TOKEN: $DUPLO_TOKEN
DUPLO_HOST: https://example.duplocloud.net/
TENANT: sometenant
SERVICE: myservice
IMAGE: myimage:${BITBUCKET_TAG}