-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall-docker-ce.ps1
772 lines (618 loc) · 21.3 KB
/
install-docker-ce.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
############################################################
# Script to install the community edition of docker on Windows
# Source - https://github.com/microsoft/Windows-Containers/blob/Main/helpful_tools/Install-DockerCE/install-docker-ce.ps1
############################################################
<#
.NOTES
Copyright (c) Microsoft Corporation. All rights reserved.
Use of this sample source code is subject to the terms of the Microsoft
license agreement under which you licensed this sample source code. If
you did not accept the terms of the license agreement, you are not
authorized to use this sample source code. For the terms of the license,
please see the license agreement between you and Microsoft or, if applicable,
see the LICENSE.RTF on your install media or the root of your tools installation.
THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
.SYNOPSIS
Installs the prerequisites for creating Windows containers
.DESCRIPTION
Installs the prerequisites for creating Windows containers
.PARAMETER DockerPath
Path to Docker.exe, can be local or URI
.PARAMETER DockerDPath
Path to DockerD.exe, can be local or URI
.PARAMETER DockerVersion
Version of docker to pull from download.docker.com - ! OVERRIDDEN BY DockerPath & DockerDPath
.PARAMETER ExternalNetAdapter
Specify a specific network adapter to bind to a DHCP network
.PARAMETER SkipDefaultHost
Prevents setting localhost as the default network configuration
.PARAMETER SkipDefaultConfig
Prevents creating default docker configuration file
.PARAMETER Force
If a restart is required, forces an immediate restart.
.PARAMETER HyperV
If passed, prepare the machine for Hyper-V containers
.PARAMETER NATSubnet
Use to override the default Docker NAT Subnet when in NAT mode.
.PARAMETER NoRestart
If a restart is required the script will terminate and will not reboot the machine
.PARAMETER ContainerBaseImage
Use this to specify the URI of the container base image you wish to pre-pull
.PARAMETER Staging
.PARAMETER TransparentNetwork
If passed, use DHCP configuration. Otherwise, will use default docker network (NAT). (alias -UseDHCP)
.PARAMETER TarPath
Path to the .tar that is the base image to load into Docker.
.EXAMPLE
.\install-docker-ce.ps1
#>
#Requires -Version 5.0
[CmdletBinding(DefaultParameterSetName="Standard")]
param(
[string]
[ValidateNotNullOrEmpty()]
$DockerPath = "default",
[string]
[ValidateNotNullOrEmpty()]
$DockerDPath = "default",
[string]
[ValidateNotNullOrEmpty()]
$DockerVersion = "latest",
[string]
$ExternalNetAdapter,
[switch]
$Force,
[switch]
$HyperV,
[switch]
$SkipDefaultHost,
[switch]
$SkipDefaultConfig,
[string]
$NATSubnet,
[switch]
$NoRestart,
[string]
$ContainerBaseImage,
[Parameter(ParameterSetName="Staging", Mandatory)]
[switch]
$Staging,
[switch]
[alias("UseDHCP")]
$TransparentNetwork,
[string]
[ValidateNotNullOrEmpty()]
$TarPath
)
$global:RebootRequired = $false
$global:ErrorFile = "$pwd\Install-ContainerHost.err"
$global:BootstrapTask = "ContainerBootstrap"
$global:HyperVImage = "NanoServer"
$global:AdminPriviledges = $false
$global:DefaultDockerLocation = "https://download.docker.com/win/static/stable/x86_64/"
$global:DockerDataPath = "$($env:ProgramData)\docker"
$global:DockerServiceName = "docker"
function
Restart-And-Run()
{
Test-Admin
Write-Output "Restart is required; restarting now..."
$argList = $script:MyInvocation.Line.replace($script:MyInvocation.InvocationName, "")
#
# Update .\ to the invocation directory for the bootstrap
#
$scriptPath = $script:MyInvocation.MyCommand.Path
$argList = $argList -replace "\.\\", "$pwd\"
if ((Split-Path -Parent -Path $scriptPath) -ne $pwd)
{
$sourceScriptPath = $scriptPath
$scriptPath = "$pwd\$($script:MyInvocation.MyCommand.Name)"
Copy-Item $sourceScriptPath $scriptPath
}
Write-Output "Creating scheduled task action ($scriptPath $argList)..."
$action = New-ScheduledTaskAction -Execute "powershell.exe" -Argument "-NoExit $scriptPath $argList"
Write-Output "Creating scheduled task trigger..."
$trigger = New-ScheduledTaskTrigger -AtStartup
Write-Output "Registering script to re-run at next system startup..."
Register-ScheduledTask -TaskName $global:BootstrapTask -Action $action -Trigger $trigger -RunLevel Highest | Out-Null
Write-Output "Setting script to run as system user..."
Set-ScheduledTask -TaskName $global:BootstrapTask -User SYSTEM
try
{
if ($Force)
{
Restart-Computer -Force
}
else
{
Restart-Computer
}
}
catch
{
Write-Error $_
Write-Output "Please restart your computer manually to continue script execution."
}
exit
}
function
Install-Feature
{
[CmdletBinding()]
param(
[ValidateNotNullOrEmpty()]
[string]
$FeatureName
)
Write-Output "Querying status of Windows feature: $FeatureName..."
if (Get-Command Get-WindowsFeature -ErrorAction SilentlyContinue)
{
if ((Get-WindowsFeature $FeatureName).Installed)
{
Write-Output "Feature $FeatureName is already enabled."
}
else
{
Test-Admin
Write-Output "Enabling feature $FeatureName..."
}
$featureInstall = Add-WindowsFeature $FeatureName
if ($featureInstall.RestartNeeded -eq "Yes")
{
$global:RebootRequired = $true;
}
}
else
{
if ((Get-WindowsOptionalFeature -Online -FeatureName $FeatureName).State -eq "Disabled")
{
if (Test-Nano)
{
throw "This NanoServer deployment does not include $FeatureName. Please add the appropriate package"
}
Test-Admin
Write-Output "Enabling feature $FeatureName..."
$feature = Enable-WindowsOptionalFeature -Online -FeatureName $FeatureName -All -NoRestart
if ($feature.RestartNeeded -eq "True")
{
$global:RebootRequired = $true;
}
}
else
{
Write-Output "Feature $FeatureName is already enabled."
if (Test-Nano)
{
#
# Get-WindowsEdition is not present on Nano. On Nano, we assume reboot is not needed
#
}
elseif ((Get-WindowsEdition -Online).RestartNeeded)
{
$global:RebootRequired = $true;
}
}
}
}
function
New-ContainerTransparentNetwork
{
if ($ExternalNetAdapter)
{
$netAdapter = (Get-NetAdapter |? {$_.Name -eq "$ExternalNetAdapter"})[0]
}
else
{
$netAdapter = (Get-NetAdapter |? {($_.Status -eq 'Up') -and ($_.ConnectorPresent)})[0]
}
Write-Output "Creating container network (Transparent)..."
New-ContainerNetwork -Name "Transparent" -Mode Transparent -NetworkAdapterName $netAdapter.Name | Out-Null
}
function
Install-ContainerHost
{
"If this file exists when Install-ContainerHost.ps1 exits, the script failed!" | Out-File -FilePath $global:ErrorFile
if (Test-Client)
{
if (-not $HyperV)
{
Write-Output "Enabling Hyper-V containers by default for Client SKU"
$HyperV = $true
}
}
#
# Validate required Windows features
#
Install-Feature -FeatureName Containers
if ($HyperV)
{
Install-Feature -FeatureName Hyper-V
}
if ($global:RebootRequired)
{
if ($NoRestart)
{
Write-Warning "A reboot is required; stopping script execution"
exit
}
Restart-And-Run
}
#
# Unregister the bootstrap task, if it was previously created
#
if ((Get-ScheduledTask -TaskName $global:BootstrapTask -ErrorAction SilentlyContinue) -ne $null)
{
Unregister-ScheduledTask -TaskName $global:BootstrapTask -Confirm:$false
}
#
# Configure networking
#
if ($($PSCmdlet.ParameterSetName) -ne "Staging")
{
if ($TransparentNetwork)
{
Write-Output "Waiting for Hyper-V Management..."
$networks = $null
try
{
$networks = Get-ContainerNetwork -ErrorAction SilentlyContinue
}
catch
{
#
# If we can't query network, we are in bootstrap mode. Assume no networks
#
}
if ($networks.Count -eq 0)
{
Write-Output "Enabling container networking..."
New-ContainerTransparentNetwork
}
else
{
Write-Output "Networking is already configured. Confirming configuration..."
$transparentNetwork = $networks |? { $_.Mode -eq "Transparent" }
if ($transparentNetwork -eq $null)
{
Write-Output "We didn't find a configured external network; configuring now..."
New-ContainerTransparentNetwork
}
else
{
if ($ExternalNetAdapter)
{
$netAdapters = (Get-NetAdapter |? {$_.Name -eq "$ExternalNetAdapter"})
if ($netAdapters.Count -eq 0)
{
throw "No adapters found that match the name $ExternalNetAdapter"
}
$netAdapter = $netAdapters[0]
$transparentNetwork = $networks |? { $_.NetworkAdapterName -eq $netAdapter.InterfaceDescription }
if ($transparentNetwork -eq $null)
{
throw "One or more external networks are configured, but not on the requested adapter ($ExternalNetAdapter)"
}
Write-Output "Configured transparent network found: $($transparentNetwork.Name)"
}
else
{
Write-Output "Configured transparent network found: $($transparentNetwork.Name)"
}
}
}
}
}
#
# Install, register, and start Docker
#
if (Test-Docker)
{
Write-Output "Docker is already installed."
}
else
{
if ($NATSubnet)
{
Install-Docker -DockerPath $DockerPath -DockerDPath $DockerDPath -NATSubnet $NATSubnet -ContainerBaseImage $ContainerBaseImage
}
else
{
Install-Docker -DockerPath $DockerPath -DockerDPath $DockerDPath -ContainerBaseImage $ContainerBaseImage
}
}
if ($TarPath)
{
cmd /c "docker load -i `"$TarPath`""
}
Remove-Item $global:ErrorFile
Write-Output "Script complete!"
}
function
Copy-File
{
[CmdletBinding()]
param(
[string]
$SourcePath,
[string]
$DestinationPath
)
if ($SourcePath -eq $DestinationPath)
{
return
}
if (Test-Path $SourcePath)
{
Copy-Item -Path $SourcePath -Destination $DestinationPath
}
elseif (($SourcePath -as [System.URI]).AbsoluteURI -ne $null)
{
if (Test-Nano)
{
$handler = New-Object System.Net.Http.HttpClientHandler
$client = New-Object System.Net.Http.HttpClient($handler)
$client.Timeout = New-Object System.TimeSpan(0, 30, 0)
$cancelTokenSource = [System.Threading.CancellationTokenSource]::new()
$responseMsg = $client.GetAsync([System.Uri]::new($SourcePath), $cancelTokenSource.Token)
$responseMsg.Wait()
if (!$responseMsg.IsCanceled)
{
$response = $responseMsg.Result
if ($response.IsSuccessStatusCode)
{
$downloadedFileStream = [System.IO.FileStream]::new($DestinationPath, [System.IO.FileMode]::Create, [System.IO.FileAccess]::Write)
$copyStreamOp = $response.Content.CopyToAsync($downloadedFileStream)
$copyStreamOp.Wait()
$downloadedFileStream.Close()
if ($copyStreamOp.Exception -ne $null)
{
throw $copyStreamOp.Exception
}
}
}
}
elseif ($PSVersionTable.PSVersion.Major -ge 5)
{
#
# We disable progress display because it kills performance for large downloads (at least on 64-bit PowerShell)
#
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest -Uri $SourcePath -OutFile $DestinationPath -UseBasicParsing
$ProgressPreference = 'Continue'
}
else
{
$webClient = New-Object System.Net.WebClient
$webClient.DownloadFile($SourcePath, $DestinationPath)
}
}
else
{
throw "Cannot copy from $SourcePath"
}
}
function
Test-Admin()
{
# Get the ID and security principal of the current user account
$myWindowsID=[System.Security.Principal.WindowsIdentity]::GetCurrent()
$myWindowsPrincipal=new-object System.Security.Principal.WindowsPrincipal($myWindowsID)
# Get the security principal for the Administrator role
$adminRole=[System.Security.Principal.WindowsBuiltInRole]::Administrator
# Check to see if we are currently running "as Administrator"
if ($myWindowsPrincipal.IsInRole($adminRole))
{
$global:AdminPriviledges = $true
return
}
else
{
#
# We are not running "as Administrator"
# Exit from the current, unelevated, process
#
throw "You must run this script as administrator"
}
}
function
Test-Client()
{
return (-not ((Get-Command Get-WindowsFeature -ErrorAction SilentlyContinue) -or (Test-Nano)))
}
function
Test-Nano()
{
$EditionId = (Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion' -Name 'EditionID').EditionId
return (($EditionId -eq "ServerStandardNano") -or
($EditionId -eq "ServerDataCenterNano") -or
($EditionId -eq "NanoServer") -or
($EditionId -eq "ServerTuva"))
}
function
Wait-Network()
{
$connectedAdapter = Get-NetAdapter |? ConnectorPresent
if ($connectedAdapter -eq $null)
{
throw "No connected network"
}
$startTime = Get-Date
$timeElapsed = $(Get-Date) - $startTime
while ($($timeElapsed).TotalMinutes -lt 5)
{
$readyNetAdapter = $connectedAdapter |? Status -eq 'Up'
if ($readyNetAdapter -ne $null)
{
return;
}
Write-Output "Waiting for network connectivity..."
Start-Sleep -sec 5
$timeElapsed = $(Get-Date) - $startTime
}
throw "Network not connected after 5 minutes"
}
function
Install-Docker()
{
[CmdletBinding()]
param(
[string]
[ValidateNotNullOrEmpty()]
$DockerPath = "default",
[string]
[ValidateNotNullOrEmpty()]
$DockerDPath = "default",
[string]
[ValidateNotNullOrEmpty()]
$NATSubnet,
[switch]
$SkipDefaultHost,
[string]
$ContainerBaseImage
)
Test-Admin
#If one of these are set to default then the whole .zip needs to be downloaded anyways.
Write-Output "DOCKER $DockerPath"
if ($DockerPath -eq "default" -or $DockerDPath -eq "default") {
Write-Output "Checking Docker versions"
#Get the list of .zip packages available from docker.
$availableVersions = ((Invoke-WebRequest -Uri $DefaultDockerLocation -UseBasicParsing).Links | Where-Object {$_.href -like "docker*"}).href | Sort-Object -Descending
#Parse the versions from the file names
$availableVersions = ($availableVersions | Select-String -Pattern "docker-(\d+\.\d+\.\d+).+" -AllMatches | Select-Object -Expand Matches | %{ $_.Groups[1].Value })
$version = $availableVersions[0]
if($DockerVersion -ne "latest") {
$version = $DockerVersion
if(!($availableVersions | Select-String $DockerVersion)) {
Write-Error "Docker version supplied $DockerVersion was invalid, please choose from the list of available versions: $availableVersions"
throw "Invalid docker version supplied."
}
}
$zipUrl = $global:DefaultDockerLocation + "docker-$version.zip"
$destinationFolder = "$env:UserProfile\DockerDownloads"
if(!(Test-Path "$destinationFolder")) {
md -Path $destinationFolder | Out-Null
} elseif(Test-Path "$destinationFolder\docker-$version") {
Remove-Item -Recurse -Force "$destinationFolder\docker-$version"
}
Write-Output "Downloading $zipUrl to $destinationFolder\docker-$version.zip"
Copy-File -SourcePath $zipUrl -DestinationPath "$destinationFolder\docker-$version.zip"
Expand-Archive -Path "$destinationFolder\docker-$version.zip" -DestinationPath "$destinationFolder\docker-$version"
if($DockerPath -eq "default") {
$DockerPath = "$destinationFolder\docker-$version\docker\docker.exe"
}
if($DockerDPath -eq "default") {
$DockerDPath = "$destinationFolder\docker-$version\docker\dockerd.exe"
}
}
Write-Output "Installing Docker... $DockerPath"
Copy-File -SourcePath $DockerPath -DestinationPath $env:windir\System32\docker.exe
Write-Output "Installing Docker daemon... $DockerDPath"
Copy-File -SourcePath $DockerDPath -DestinationPath $env:windir\System32\dockerd.exe
if ($SkipDefaultConfig)
{
Write-Output "Skipping default docker configuration..."
}
else
{
$dockerConfigPath = Join-Path $global:DockerDataPath "config"
if (!(Test-Path $dockerConfigPath))
{
md -Path $dockerConfigPath | Out-Null
}
#
# Register the docker service.
# Configuration options should be placed at %programdata%\docker\config\daemon.json
#
Write-Output "Configuring the docker service..."
$daemonSettings = New-Object PSObject
$certsPath = Join-Path $global:DockerDataPath "certs.d"
if (Test-Path $certsPath)
{
$daemonSettings | Add-Member NoteProperty hosts @("npipe://", "0.0.0.0:2376")
$daemonSettings | Add-Member NoteProperty tlsverify true
$daemonSettings | Add-Member NoteProperty tlscacert (Join-Path $certsPath "ca.pem")
$daemonSettings | Add-Member NoteProperty tlscert (Join-Path $certsPath "server-cert.pem")
$daemonSettings | Add-Member NoteProperty tlskey (Join-Path $certsPath "server-key.pem")
}
elseif (!$SkipDefaultHost.IsPresent)
{
# Default local host
$daemonSettings | Add-Member NoteProperty hosts @("npipe://")
}
if ($NATSubnet -ne "")
{
$daemonSettings | Add-Member NoteProperty fixed-cidr $NATSubnet
}
$daemonSettingsFile = Join-Path $dockerConfigPath "daemon.json"
$daemonSettings | ConvertTo-Json | Out-File -FilePath $daemonSettingsFile -Encoding ASCII
}
& dockerd --register-service --service-name $global:DockerServiceName
Start-Docker
#
# Waiting for docker to come to steady state
#
Wait-Docker
if(-not [string]::IsNullOrEmpty($ContainerBaseImage)) {
Write-Output "Attempting to pull specified base image: $ContainerBaseImage"
docker pull $ContainerBaseImage
}
Write-Output "The following images are present on this machine:"
docker images -a | Write-Output
Write-Output ""
}
function
Start-Docker()
{
Start-Service -Name $global:DockerServiceName
}
function
Stop-Docker()
{
Stop-Service -Name $global:DockerServiceName
}
function
Test-Docker()
{
$service = Get-Service -Name $global:DockerServiceName -ErrorAction SilentlyContinue
return ($service -ne $null)
}
function
Wait-Docker()
{
Write-Output "Waiting for Docker daemon..."
$dockerReady = $false
$startTime = Get-Date
while (-not $dockerReady)
{
try
{
docker version | Out-Null
if (-not $?)
{
throw "Docker daemon is not running yet"
}
$dockerReady = $true
}
catch
{
$timeElapsed = $(Get-Date) - $startTime
if ($($timeElapsed).TotalMinutes -ge 1)
{
throw "Docker Daemon did not start successfully within 1 minute."
}
# Swallow error and try again
Start-Sleep -sec 1
}
}
Write-Output "Successfully connected to Docker Daemon."
}
Start-Transcript -NoClobber -IncludeInvocationHeader -OutputDirectory C:\
Set-Location -Path C:\
try
{
Install-ContainerHost
}
catch
{
Write-Error $_
}