在 Windows Server 2016 TP4 上安装 Docker

nas*_*ast 3 windows docker server

我想在安装了 Windows Server 2016 的物理机上安装 Docker。(使用管理员帐户,而不是访客或普通用户帐户)

所以我尝试了这个指南

但是第二个命令失败并出现以下错误:

命令:powershell.exe -NoProfile -ExecutionPolicy Bypass C:\Install-ContainerHost.ps1 -HyperV

...
Docker is already installed.
Installing ContainerImage provider...
C:\Install-ContainerHost.ps1 : Could not install ContainerImage provider
In Line:1 ...
+ C:\Install-ContainerHost.ps1 -HyperV
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException
   + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException, Install-ContainerHost.ps1
Run Code Online (Sandbox Code Playgroud)

我找不到解决方案..有什么想法吗?

编辑/更新:我重新安装了 Windows Server 2016。第一次运行脚本后,我收到此错误:

...
Downloading NSSM...
Extracting NSSM for archive...
Configuring NSSM for Docker service...
Starting Docker...
Waiting for Docker daemon...
An error occurred trying to connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.24/version: open //./pipe/docker_engine: Das System kann die angegebene Datei nicht finden.
...
An error occurred trying to connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.24/version: open //./pipe/docker_engine: Das System kann die angegebene Datei nicht finden.
C:\Users\Administrator\Install-ContainerHost.ps1 : Docker Daemon did not start successfully within 1 minute.
In Zeile:1 Zeichen:1
+ C:\Users\Administrator\Install-ContainerHost.ps1 -HyperV
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Install-ContainerHost.ps1
Run Code Online (Sandbox Code Playgroud)

在脚本的以下执行中,我在第一篇文章中收到错误消息。

Sto*_*sBG 5

我遇到了同样的问题,以下是修复它的方法和方法。

如果您Get-PSRepository在您的系统上运行,我会看到消息“警告:无法找到模块存储库”。在我的 Windows 10 机器上运行表明我确实有一个存储库设置。

我运行以下命令来设置相同的存储库

powershell Register-PSRepository -Name "PSGallery" –SourceLocation "https://www.powershellgallery.com/api/v2/" -InstallationPolicy Trusted
Run Code Online (Sandbox Code Playgroud)

一切都很好。

我正在使用 Windows Server 2016 TP5,但我认为这将解决您的问题。

  • @nast 尝试`powershell Set-PSRepository -Name "PSGallery" -InstallationPolicy Trusted` (2认同)