From 67ee137c0866226b730bacf74871a2d7c29e565f Mon Sep 17 00:00:00 2001 From: Souvik Ghosh Date: Fri, 13 Feb 2026 23:56:46 +0530 Subject: [PATCH] Remove docker install task to fix pipeline failure (#3130) ## Why make this change? DAB test pipelines are failing with following error- `docker: Error response from daemon: client version 1.32 is too old. Minimum supported API version is 1.44, please upgrade your client to a newer version.` Since pipeline agents already come with docker, this is actually downgrading docker. Skipping this allows the latest available docker client to run. ## What is this change? - pipelines.yml files updated by removing the docker installation task ## How was this tested? - Pipeline runs ## Sample Request(s) NA --- .pipelines/dwsql-pipelines.yml | 6 ------ .pipelines/mssql-pipelines.yml | 6 ------ .pipelines/mysql-pipelines.yml | 6 ------ .pipelines/pg-pipelines.yml | 6 ------ 4 files changed, 24 deletions(-) diff --git a/.pipelines/dwsql-pipelines.yml b/.pipelines/dwsql-pipelines.yml index 2ae2730747..2073849d93 100644 --- a/.pipelines/dwsql-pipelines.yml +++ b/.pipelines/dwsql-pipelines.yml @@ -50,12 +50,6 @@ jobs: feedsToUse: config nugetConfigPath: Nuget.config - - task: DockerInstaller@0 - displayName: Docker Installer - inputs: - dockerVersion: 17.09.0-ce - releaseType: stable - - task: Bash@3 displayName: 'Generate password' inputs: diff --git a/.pipelines/mssql-pipelines.yml b/.pipelines/mssql-pipelines.yml index 81955bd889..e41830ddb2 100644 --- a/.pipelines/mssql-pipelines.yml +++ b/.pipelines/mssql-pipelines.yml @@ -51,12 +51,6 @@ jobs: feedsToUse: config nugetConfigPath: Nuget.config - - task: DockerInstaller@0 - displayName: Docker Installer - inputs: - dockerVersion: 17.09.0-ce - releaseType: stable - - task: Bash@3 displayName: 'Generate password' inputs: diff --git a/.pipelines/mysql-pipelines.yml b/.pipelines/mysql-pipelines.yml index 2623415a70..0090dd3618 100644 --- a/.pipelines/mysql-pipelines.yml +++ b/.pipelines/mysql-pipelines.yml @@ -49,12 +49,6 @@ jobs: feedsToUse: config nugetConfigPath: Nuget.config - - task: DockerInstaller@0 - displayName: Docker Installer - inputs: - dockerVersion: 17.09.0-ce - releaseType: stable - - task: Bash@3 displayName: 'Generate password' inputs: diff --git a/.pipelines/pg-pipelines.yml b/.pipelines/pg-pipelines.yml index 6618dab734..9545a7dadc 100644 --- a/.pipelines/pg-pipelines.yml +++ b/.pipelines/pg-pipelines.yml @@ -44,12 +44,6 @@ jobs: feedsToUse: config nugetConfigPath: Nuget.config - - task: DockerInstaller@0 - displayName: Docker Installer - inputs: - dockerVersion: 17.09.0-ce - releaseType: stable - - task: Bash@3 displayName: 'Generate password' inputs: