[Ubuntu] Deprecating docker compose v1 from ubuntu images (#10368)

* Deprecating docker compose v1 from un=buntu images

* Pin sql version for win-19
This commit is contained in:
kishorekumar-anchala
2024-07-30 21:38:05 +05:30
committed by GitHub
parent 137d0ed83d
commit 582bbb9c15
6 changed files with 3 additions and 36 deletions

View File

@@ -1,21 +0,0 @@
#!/bin/bash -e
################################################################################
## File: install-docker-compose.sh
## Desc: Install Docker Compose v1
## Supply chain security: Docker Compose v1 - checksum validation
################################################################################
# Source the helpers for use with the script
source $HELPER_SCRIPTS/install.sh
# Download docker-compose v1 from releases
binary_path=$(download_with_retry "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-Linux-x86_64")
# Supply chain security - Docker Compose v1
external_hash="f3f10cf3dbb8107e9ba2ea5f23c1d2159ff7321d16f0a23051d68d8e2547b323"
use_checksum_comparison "${binary_path}" "${external_hash}"
# Install docker-compose v1
install "${binary_path}" "/usr/local/bin/docker-compose"
invoke_tests "Tools" "Docker-compose v1"