diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..c60e32985 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,17 @@ +trigger: + - docker-devops + +pool: + vmImage: "Ubuntu-16.04" + +variables: + buildConfiguration: "Release" + imageName: "FilterLists:$(Build.BuildId)" + +steps: + - script: | + docker-compose build + docker login -u $(dockerId) -p $pswd + docker-compose push --ignore-push-failures + env: + pswd: $(dockerPassword)