From 752e13d9a9222b5bb724cbf5d59ff70c06fa0d6a Mon Sep 17 00:00:00 2001 From: chschumacher1994 <115921143+chschumacher1994@users.noreply.github.com> Date: Sat, 27 May 2023 01:35:42 +0200 Subject: [PATCH] fix(docs): minor fix on the windows installation steps If this command is used without "-Container:$false" and the "containerd" directory does not already exist all files will be merged into a single "containerd" file instead of a new directory. Signed-off-by: chschumacher1994 <115921143+chschumacher1994@users.noreply.github.com> --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 6a945bac3..cbf5165c9 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -116,7 +116,7 @@ curl.exe -L https://github.com/containerd/containerd/releases/download/v$Version tar.exe xvf .\containerd-windows-amd64.tar.gz # Copy and configure -Copy-Item -Path ".\bin\*" -Destination "$Env:ProgramFiles\containerd" -Recurse -Force +Copy-Item -Path ".\bin\*" -Destination "$Env:ProgramFiles\containerd" -Recurse -Container:$false -Force cd $Env:ProgramFiles\containerd\ .\containerd.exe config default | Out-File config.toml -Encoding ascii