From ec0bd27c97738699377c9c23800f8f628e57928f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Mon, 3 Feb 2020 14:30:34 +0100 Subject: [PATCH] creating folder on empty SSD --- scripts/windows_agent_bootstrap.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/windows_agent_bootstrap.ps1 b/scripts/windows_agent_bootstrap.ps1 index 7303644..e6a893b 100644 --- a/scripts/windows_agent_bootstrap.ps1 +++ b/scripts/windows_agent_bootstrap.ps1 @@ -40,6 +40,7 @@ choco install -y gcloudsdk --ignore-checksums gcloud auth docker # move docker folder to SSD to get better IO performance +New-Item -Path "D:\" -Name "Docker" -ItemType "directory" cmd /C "mklink /j C:\ProgramData\Docker D:\docker" # Reboot