-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathReset-DockerWslIntegration.ps1
117 lines (94 loc) · 2.84 KB
/
Reset-DockerWslIntegration.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
<#
.SYNOPSIS
This module provides functions to reset Docker WSL integration.
.DESCRIPTION
The module includes functions to stop Docker Desktop, stop WSL, and unregister Docker WSL data.
.NOTES
Version: 1.2
Author: Daethyra
#>
function Stop-DockerDesktop {
<#
.SYNOPSIS
Stops the Docker Desktop process.
.DESCRIPTION
Attempts to stop the Docker Desktop process. Writes an error if the process cannot be stopped.
#>
try {
$processes = Get-Process -Name "*Docker Desktop*" -ErrorAction SilentlyContinue
if (-not $processes) {
Write-Output "No Docker Desktop processes found."
return
}
$processes | Stop-Process -Force
Start-Sleep -Seconds 3 # Allow time for process termination
Write-Output "Docker Desktop processes stopped successfully."
}
catch {
Write-Error "Error stopping Docker Desktop processes: $_"
throw
}
}
function Stop-Wsl {
<#
.SYNOPSIS
Shuts down the Windows Subsystem for Linux (WSL).
.DESCRIPTION
Tries to shut down WSL up to a specified number of attempts.
#>
param (
[int]$maxAttempts = 3
)
for ($i = 1; $i -le $maxAttempts; $i++) {
Write-Output "Attempting WSL shutdown (Attempt $i/$maxAttempts)"
wsl --shutdown
if ($LASTEXITCODE -eq 0) {
Write-Output "WSL shut down successfully."
Start-Sleep -Seconds 5 # Allow time for full shutdown
return
}
Write-Warning "WSL shutdown attempt $i failed."
if ($i -lt $maxAttempts) {
Start-Sleep -Seconds 2
}
}
$errorMsg = "Failed to shut down WSL after $maxAttempts attempts."
Write-Error $errorMsg
throw $errorMsg
}
function Unregister-DockerWsl {
<#
.SYNOPSIS
Unregisters the docker-desktop-data from WSL.
.DESCRIPTION
Attempts to unregister the docker-desktop-data. Writes an error if the operation fails.
#>
try {
Write-Output "Unregistering docker-desktop-data..."
wsl --unregister docker-desktop-data
if ($LASTEXITCODE -ne 0) {
throw "wsl command failed with exit code $LASTEXITCODE"
}
Write-Output "docker-desktop-data unregistered successfully."
Start-Sleep -Seconds 2 # Allow time for unregistration to complete
}
catch {
Write-Error "Error unregistering docker-desktop-data: $_"
throw
}
}
# Main script
try {
Write-Output "Starting Docker WSL integration reset process."
Write-Output "Stopping Docker Desktop..."
Stop-DockerDesktop
Write-Output "Shutting down WSL..."
Stop-Wsl
Write-Output "Unregistering docker-desktop-data..."
Unregister-DockerWsl
Write-Output "Docker WSL integration successfully reset."
}
catch {
Write-Error "Reset failed: $_"
exit 1
}