From be94ef00bb66a67c6bb884f48e641530b22752ba Mon Sep 17 00:00:00 2001 From: yavuzsonmez Date: Tue, 10 Oct 2023 11:43:37 +0200 Subject: [PATCH] Fix install on windows server * Update doc --- docs/configuring-windows-server.adoc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/configuring-windows-server.adoc b/docs/configuring-windows-server.adoc index 2d1b2de8..1c4e235d 100644 --- a/docs/configuring-windows-server.adoc +++ b/docs/configuring-windows-server.adoc @@ -15,19 +15,19 @@ Process isolation mode is the default isolation mode under Windows Server. - Minimum 8GB of RAM - Minimum 800GB available disk space for building container images -== Step 1: Install Docker EE +== Step 1: Install Docker CE -As per the instructions provided by the https://docs.docker.com/install/windows/docker-ee/[Install Docker Engine - Enterprise on Windows Servers] page of the Docker Documentation, run the following commands from an elevated PowerShell prompt: +As per the instructions provided by https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce#windows-server-1[Install Container Runtime on Windows Servers], run the following commands from an elevated PowerShell prompt: [source,powershell] ---- -# Add the Docker provider to the PowerShell package manager -Install-Module DockerMsftProvider -Force +# Add the Docker install script +Invoke-WebRequest -UseBasicParsing "https://raw.githubusercontent.com/microsoft/Windows-Containers/Main/helpful_tools/Install-DockerCE/install-docker-ce.ps1" -o install-docker-ce.ps1 -# Install Docker EE -Install-Package Docker -ProviderName DockerMsftProvider -Force +# Run the script +.\install-docker-ce.ps1 -# Restart the computer to enable the containers feature +# Your computer should restart automatically, but in case it doesn't, run the following command to enable the containers feature Restart-Computer ----