mirror of https://github.com/docker/docs.git
Update Windows Server install instructions (#5129)
This commit is contained in:
parent
cdc2fb36b9
commit
ed03eaa108
|
|
@ -113,7 +113,7 @@ defaults:
|
||||||
path: "engine"
|
path: "engine"
|
||||||
values:
|
values:
|
||||||
assignee: "mstanleyjones"
|
assignee: "mstanleyjones"
|
||||||
win_server_zip_url: "https://download.docker.com/components/engine/windows-server/17.06/docker-17.06.2-ee-4.zip"
|
win_latest_build: "docker-17.06.2-ee-4"
|
||||||
- scope:
|
- scope:
|
||||||
path: "kitematic"
|
path: "kitematic"
|
||||||
values:
|
values:
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,10 @@ redirect_from:
|
||||||
- /docker-ee-for-windows/install/
|
- /docker-ee-for-windows/install/
|
||||||
---
|
---
|
||||||
|
|
||||||
|
{% capture filename %}{{ page.win_latest_build }}.zip{% endcapture %}
|
||||||
|
{% capture download_url %}https://download.docker.com/components/engine/windows-server/{{ site.docker_ee_version }}/{{ filename }}{% endcapture %}
|
||||||
|
|
||||||
|
|
||||||
Docker Enterprise Edition for Windows Server 2016 (*Docker EE*) enables native
|
Docker Enterprise Edition for Windows Server 2016 (*Docker EE*) enables native
|
||||||
Docker containers on Windows Server 2016. The Docker EE installation package
|
Docker containers on Windows Server 2016. The Docker EE installation package
|
||||||
includes everything you need to run Docker on Windows Server 2016.
|
includes everything you need to run Docker on Windows Server 2016.
|
||||||
|
|
@ -82,8 +86,7 @@ installs, or install on air-gapped systems.
|
||||||
|
|
||||||
```ps
|
```ps
|
||||||
# On an online machine, download the zip file.
|
# On an online machine, download the zip file.
|
||||||
PS> invoke-webrequest -UseBasicparsing -Outfile docker.zip
|
PS> invoke-webrequest -UseBasicparsing -Outfile {{ filename }} {{ download_url }}
|
||||||
{{ page.win_server_zip_url }}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Copy the zip file to the machine where you want to install Docker. In a
|
2. Copy the zip file to the machine where you want to install Docker. In a
|
||||||
|
|
@ -92,10 +95,10 @@ installs, or install on air-gapped systems.
|
||||||
|
|
||||||
```ps
|
```ps
|
||||||
# Extract the archive.
|
# Extract the archive.
|
||||||
PS> Expand-Archive docker.zip -DestinationPath $Env:ProgramFiles
|
PS> Expand-Archive {{ filename }} -DestinationPath $Env:ProgramFiles
|
||||||
|
|
||||||
# Clean up the zip file.
|
# Clean up the zip file.
|
||||||
PS> Remove-Item -Force docker.zip
|
PS> Remove-Item -Force {{ filename }}
|
||||||
|
|
||||||
# Install Docker. This will require rebooting.
|
# Install Docker. This will require rebooting.
|
||||||
$null = Install-WindowsFeature containers
|
$null = Install-WindowsFeature containers
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue