Cherry pick - Docker task pipeline fix#3143
Merged
souvikghosh04 merged 1 commit intorelease/1.7from Feb 19, 2026
Merged
Conversation
## 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
Contributor
There was a problem hiding this comment.
Pull request overview
Cherry-picks the fix from #3130 to resolve Azure DevOps pipeline failures caused by installing an outdated Docker client that is incompatible with the hosted agent Docker daemon.
Changes:
- Removed the
DockerInstaller@0task (previously pinning Docker17.09.0-ce) from PostgreSQL, MySQL, MSSQL, and DwSQL pipeline YAMLs. - Ensures pipelines use the preinstalled Docker client on
ubuntu-latestagents to avoid Docker API version mismatch errors.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .pipelines/pg-pipelines.yml | Removes Docker install step so Postgres docker-run uses agent’s Docker. |
| .pipelines/mysql-pipelines.yml | Removes Docker install step so MySQL docker-run uses agent’s Docker. |
| .pipelines/mssql-pipelines.yml | Removes Docker install step from MSSQL pipeline (Linux job context). |
| .pipelines/dwsql-pipelines.yml | Removes Docker install step so SQL Server docker startup uses agent’s Docker. |
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 6 pipeline(s). |
Aniruddh25
approved these changes
Feb 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why make this change?
This is a cherry pick for original PR #3130
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?
How was this tested?
Sample Request(s)
NA