From b50860c53bad97b49da25986a99e22e4862a0dcf Mon Sep 17 00:00:00 2001 From: James Healy Date: Thu, 15 Apr 2021 10:50:21 +1000 Subject: [PATCH] bump docker from 19.03.x to 20.10.x * Linux: 20.10.6 * Windows: 20.10.0 We're assuming this is a backwards compatible upgrade and safe to include in the elastic stack 5.2.x to 5.3.x upgrade. Assuming the AMIs build, we'll might merge and dogfood them for our internal builds to build confidence in the compatibility and safeness of the bump. The windows patch release is older because that's all that seems ot be available. --- packer/linux/scripts/install-docker.sh | 2 +- packer/windows/scripts/install-docker.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packer/linux/scripts/install-docker.sh b/packer/linux/scripts/install-docker.sh index 4659a3b76..934a25f84 100755 --- a/packer/linux/scripts/install-docker.sh +++ b/packer/linux/scripts/install-docker.sh @@ -1,7 +1,7 @@ #!/bin/bash set -eu -o pipefail -DOCKER_VERSION=19.03.13 +DOCKER_VERSION=20.10.6 DOCKER_RELEASE="stable" DOCKER_COMPOSE_VERSION=1.27.4 MACHINE=$(uname -m) diff --git a/packer/windows/scripts/install-docker.ps1 b/packer/windows/scripts/install-docker.ps1 index 63642a292..4dfff30e6 100644 --- a/packer/windows/scripts/install-docker.ps1 +++ b/packer/windows/scripts/install-docker.ps1 @@ -1,7 +1,7 @@ # Stop script execution when a non-terminating error occurs $ErrorActionPreference = "Stop" -$docker_version="19.03.12" +$docker_version="20.10.0" Write-Output "Upgrading DockerMsftProvider module" Update-Module -Name DockerMsftProvider -Force