mirror of https://github.com/docker/docs.git
Included a step to verify if Windows needs a restart (#5920)
This commit is contained in:
parent
95bf032283
commit
5cefff6be0
|
@ -48,7 +48,18 @@ full list of prerequisites.
|
|||
Install-Package Docker -ProviderName DockerMsftProvider -Force
|
||||
```
|
||||
|
||||
2. Test your Docker EE installation by running the `hello-world` container.
|
||||
2. Check if a reboot is required, and if yes, restart your instance:
|
||||
|
||||
```PowerShell
|
||||
(Install-WindowsFeature Containers).RestartNeeded
|
||||
```
|
||||
If the output of this command is **Yes**, then restart the server with:
|
||||
|
||||
```PowerShell
|
||||
Restart-Computer
|
||||
```
|
||||
|
||||
3. Test your Docker EE installation by running the `hello-world` container.
|
||||
|
||||
```PowerShell
|
||||
docker container run hello-world:nanoserver
|
||||
|
|
Loading…
Reference in New Issue