We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52ade21 commit 3ef3f29Copy full SHA for 3ef3f29
modules/tfe_init_replicated/templates/install_packages.func
@@ -16,8 +16,9 @@ function install_packages {
16
17
%{ if distribution == "amazon-linux-2023" ~}
18
echo "[$(date +"%FT%T")] [Terraform Enterprise] Remove existing docker and install v24 with yum" | tee -a $log_pathname
19
- yum remove docker -y
20
- yum install docker-24.0.5-1.amzn2023.0.3 -y
+ yum -y remove docker
+ yum clean packages
21
+ yum -y install docker-24.0.5-1.amzn2023.0.3
22
23
systemctl start docker
24
systemctl enable docker
0 commit comments