mirror of https://github.com/docker/docs.git
Update Offline Zip for Windows 18.09
Signed-off-by: ollypom <oppomeroy@gmail.com>
This commit is contained in:
parent
e4d921e762
commit
e50dc8a8ed
|
|
@ -22,7 +22,7 @@ exclude: ["_scripts", "apidocs/layouts", "Gemfile", "hooks"]
|
||||||
latest_stable_docker_engine_api_version: "1.39"
|
latest_stable_docker_engine_api_version: "1.39"
|
||||||
docker_ce_stable_version: "18.09"
|
docker_ce_stable_version: "18.09"
|
||||||
docker_ce_edge_version: "18.09"
|
docker_ce_edge_version: "18.09"
|
||||||
docker_ee_version: "2.1"
|
docker_ee_version: "18.09"
|
||||||
compose_version: "1.23.1"
|
compose_version: "1.23.1"
|
||||||
machine_version: "0.16.0"
|
machine_version: "0.16.0"
|
||||||
distribution_version: "2.6"
|
distribution_version: "2.6"
|
||||||
|
|
@ -95,7 +95,7 @@ defaults:
|
||||||
- scope:
|
- scope:
|
||||||
path: "install"
|
path: "install"
|
||||||
values:
|
values:
|
||||||
win_latest_build: "docker-17.06.2-ee-17"
|
win_latest_build: "docker-18.09.0"
|
||||||
- scope:
|
- scope:
|
||||||
path: "datacenter"
|
path: "datacenter"
|
||||||
values:
|
values:
|
||||||
|
|
|
||||||
|
|
@ -124,9 +124,12 @@ installs, or install on air-gapped systems.
|
||||||
|
|
||||||
```PowerShell
|
```PowerShell
|
||||||
# On an online machine, download the zip file.
|
# On an online machine, download the zip file.
|
||||||
invoke-webrequest -UseBasicparsing -Outfile {{ filename }} {{ download_url }}
|
Invoke-WebRequest -UseBasicParsing -OutFile {{ filename }} {{ download_url }}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If you need to download a specific Docker EE Engine release, all URLs can be
|
||||||
|
found on this [JSON index](https://download.docker.com/components/engine/windows-server/index.json)
|
||||||
|
|
||||||
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
|
||||||
PowerShell command prompt, use the following commands to extract the archive,
|
PowerShell command prompt, use the following commands to extract the archive,
|
||||||
register, and start the Docker service.
|
register, and start the Docker service.
|
||||||
|
|
@ -173,14 +176,15 @@ installs, or install on air-gapped systems.
|
||||||
To install a specific version, use the `RequiredVersion` flag:
|
To install a specific version, use the `RequiredVersion` flag:
|
||||||
|
|
||||||
```PowerShell
|
```PowerShell
|
||||||
Install-Package -Name docker -ProviderName DockerMsftProvider -Force -RequiredVersion 18.09
|
Install-Package -Name docker -ProviderName DockerMsftProvider -Force -RequiredVersion {{ site.docker_ee_version }}
|
||||||
...
|
...
|
||||||
Name Version Source Summary
|
Name Version Source Summary
|
||||||
---- ------- ------ -------
|
---- ------- ------ -------
|
||||||
Docker 18.09.0 Docker Contains Docker Engine - Enterprise for use with Windows Server...
|
Docker {{ site.docker_ee_version }} Docker Contains Docker Engine - Enterprise for use with Windows Server...
|
||||||
```
|
```
|
||||||
|
|
||||||
### Updating the DockerMsftProvider
|
### Updating the DockerMsftProvider
|
||||||
|
|
||||||
Installing specific Docker EE versions may require an update to previously installed DockerMsftProvider modules. To update:
|
Installing specific Docker EE versions may require an update to previously installed DockerMsftProvider modules. To update:
|
||||||
|
|
||||||
```PowerShell
|
```PowerShell
|
||||||
|
|
@ -194,7 +198,7 @@ Then open a new Powershell session for the update to take effect.
|
||||||
To update Docker Engine - Enterprise to the most recent release, specify the `-RequiredVersion` and `-Update` flags:
|
To update Docker Engine - Enterprise to the most recent release, specify the `-RequiredVersion` and `-Update` flags:
|
||||||
|
|
||||||
```PowerShell
|
```PowerShell
|
||||||
Install-Package -Name docker -ProviderName DockerMsftProvider -RequiredVersion 18.09 -Update -Force
|
Install-Package -Name docker -ProviderName DockerMsftProvider -RequiredVersion {{ site.docker_ee_version }} -Update -Force
|
||||||
```
|
```
|
||||||
The required version must match any of the versions available in this json file: https://dockermsft.blob.core.windows.net/dockercontainer/DockerMsftIndex.json
|
The required version must match any of the versions available in this json file: https://dockermsft.blob.core.windows.net/dockercontainer/DockerMsftIndex.json
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue