From 92806bd63f165b6d5c4f1fbfb7ebfb69229c711b Mon Sep 17 00:00:00 2001 From: phillmac Date: Sun, 8 Sep 2019 12:25:07 +1000 Subject: [PATCH] Add registry & image name to build task --- azure-pipelines.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0ab0739..3d7e0c1 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -23,10 +23,11 @@ stages: - task: Docker@2 displayName: Build an image inputs: - command: build - dockerfile: '**/Dockerfile' - tags: | - $(tag) + containerRegistry: 'OrbitDB Docker Hub' + repository: 'orbitdb/orbit-db-http-api' + command: 'build' + Dockerfile: '**/Dockerfile' + tags: '$(tag)' - task: Docker@2 displayName: Push image inputs: