The process of installing Docker on Windows Server 2016 and the problems encountered

The process of installing Docker on Windows Server 2016 and the problems encountered

Prerequisites

To run containers on Windows Server, you need a physical server or virtual machine running Windows Server (Semi-Annual Channel), Windows Server 2019, or Windows Server 2016.

It is recommended to update the server first

Windows Server 2016 already supports Docker technology, and the official information is also provided:

https://docs.microsoft.com/en-us/virtualization/windowscontainers/quick-start/quick-start-windows-server

There will be no problem referring to this link in general, but there is still a big pitfall.
Run sconfig using PowerShell, then select 6 and enter A to download all updates:

insert image description here
insert image description here

Install Docker

To install Docker on Windows Server, you can use the OneGet provider PowerShell module published by Microsoft, called DockerMicrosoftProvider. This provider enables the container functionality in Windows and installs the Docker engine and client. Here’s how to do it:
Open an elevated PowerShell session and install the Docker-Microsoft PackageManagement provider from the PowerShell Gallery.

Install-Module -Name DockerMsftProvider -Repository PSGallery -Force

If prompted to install the NuGet provider, also type Y to install it.
Install the latest version of Docker using the PackageManagement PowerShell module.

Install-Package -Name docker -ProviderName DockerMsftProvider

When PowerShell asks whether to trust the package source "DockerDefault", type A to proceed with the installation.
After the installation is complete, restart your computer.

Restart-Computer -Force

If you wish to update Docker later, do the following:

  • Use Get-Package -Name Docker -ProviderName DockerMsftProvider
  • To view the installed version, use Find-Package -Name Docker -ProviderName
  • After DockerMsftProvider finds the current version is ready, use Install-Package -Name Docker
  • ProviderName DockerMsftProvider -Update -Force to upgrade, then execute Start-Service Docker

verify

Enter docker version:

PS C:\Users\Administrator> docker version
Client: Docker Engine - Enterprise
Version: 19.03.5
API version: 1.40
Go version: go1.12.12
Git commit: 2ee0c57608
Built: 11/13/2019 08:00:16
OS/Arch: windows/amd64
Experimental: false

Server: Docker Engine - Enterprise
Engine:
Version: 19.03.5
API version: 1.40 (minimum version 1.24)
Go version: go1.12.12
Git commit: 2ee0c57608
Built: 11/13/2019 07:58:51
OS/Arch: windows/amd64
Experimental: false

At this point, the Docker installation is complete. Next, you can download some Docker files to play with, for example, by executing:

docker run microsoft/dotnet-samples:dotnetapp-nanoserver

This example will automatically download the Docker file and run it, but the download speed is extremely slow. I hope your download is successful.
For the next introduction, you can refer to this article:
https://docs.microsoft.com/en-us/virtualization/windowscontainers/quick-start/quick-start-images

Problems encountered

Unable to use install-module :

PS C:\Users\Administrator> Install-Module -Name DockerMsftProvider -Repository PSGallery -Force
Get-PSGalleryApiAvailability : PowerShell Gallery is currently unavailable. Please try again later.
Location: C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\1.0.0.1\PSModule.psm1:1711 Characters: 9
+ Get-PSGalleryApiAvailability -Repository $Repository
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [Get-PSGalleryApiAvailability], InvalidOperationException
+ FullyQualifiedErrorId : PowerShellGalleryUnavailable,Get-PSGalleryApiAvailability

Get-PSGalleryApiAvailability : PowerShell Gallery is currently unavailable. Please try again later.
Location: C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\1.0.0.1\PSModule.psm1:4437 Characters: 9
+ Get-PSGalleryApiAvailability -Repository $Name
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [Get-PSGalleryApiAvailability], InvalidOperationException
+ FullyQualifiedErrorId : PowerShellGalleryUnavailable,Get-PSGalleryApiAvailability

Solution:
Open PowerShell as an administrator and enter the following commands in sequence:

$ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$ Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
$ Install-Module posh-ssh

In addition, please ensure that your machine can access the Internet.

PS C:\Users\Administrator> [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
PS C:\Users\Administrator> Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force

Name Version Source Summary
---- ------- ------ -------
nuget 2.8.5.208 https://onege... NuGet provider for the OneGet meta-package manager

PS C:\Users\Administrator> Install-Module posh-ssh

References:

[1] https://cloud.tencent.com/developer/article/1378641

[2] https://docs.microsoft.com/zh-cn/virtualization/windowscontainers/quick-start/set-up-environment?tabs=Windows-Server

This is the end of this article about installing Docker on Windows Server 2016. For more information about installing Docker on Windows Server 2016, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Docker installation of RocketMQ and solutions to problems encountered during installation
  • Docker-compose installation yml file configuration method
  • Detailed steps for installing ros2 in docker
  • The most detailed method to install docker on CentOS 8
  • Detailed process of installing logstash in Docker
  • Quick installation of Docker step-by-step tutorial

<<:  Introduction to the graphic composition and typesetting capabilities of web design

>>:  Detailed explanation of data sharing between Vue components

Recommend

What are Web Slices?

IE8 new feature Web Slices (Web Slices) Microsoft...

Tutorial on installing Pycharm and Ipython on Ubuntu 16.04/18.04

Under Ubuntu 18.04 1. sudo apt install python ins...

MySQL GROUP_CONCAT limitation solution

effect: The GROUP_CONCAT function can concatenate...

Detailed tutorial on setting password for MySQL free installation version

Method 1: Use the SET PASSWORD command MySQL -u r...

Detailed explanation of JSON.parse and JSON.stringify usage

Table of contents JSON.parse JSON.parse Syntax re...

In-depth study of MySQL multi-version concurrency control MVCC

MVCC MVCC (Multi-Version Concurrency Control) is ...

iframe src assignment problem (server side)

I encountered this problem today. I reassigned the...

Recommend 60 paging cases and good practices

<br />Structure and hierarchy reduce complex...

JavaScript to implement a simple web calculator

background Since I was assigned to a new project ...

Web developers are concerned about the coexistence of IE7 and IE8

I installed IE8 today. When I went to the Microso...

Solve the problem of ifconfig being unavailable in docker

Recently, when I was learning docker, I found tha...

How to use docker compose to build fastDFS file server

The previous article introduced a detailed exampl...