You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dockerd installed within WSL2 directly appears to be working normally. WCOW also works correctly.
Output of & "C:\Program Files\Docker\Docker\resources\com.docker.diagnose.exe" check
(not applicable)
Steps to reproduce the behavior
On Windows 2022:
# save yourself the pain of using powershell that no one comprehends
curl -sL https://frippery.org/files/busybox/busybox64.exe -o sh.exe
sh -il
### START INSIDE BUSYBOX# install ubuntu
wsl --install -d Ubuntu
# reboot
shutdown -r -t 0
# wait for shutdown. you must login interactively to trigger automatic ubuntu install, or
ubuntu2204 install --ui=none
# inside ubuntu, install docker# i would heredoc this for you but i never remember the syntax for nested heredocs
wsl
### START INSIDE WSL
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
# Add your user to the Docker group
sudo usermod -aG docker $USER# enable systemd
sudo tee /etc/wsl.conf <<EOF >/dev/null[boot]systemd=trueEOF# rebootexit### END INSIDE WSL
wsl --shutdown
# import the context
wsl docker context export default - | docker context import linux -
docker context use linux
docker version
Actual behavior
docker version
panics with a Linux context.Expected behavior
It should not panic.
Information
dockerd
installed within WSL2 directly appears to be working normally. WCOW also works correctly.Output of
& "C:\Program Files\Docker\Docker\resources\com.docker.diagnose.exe" check
(not applicable)
Steps to reproduce the behavior
On Windows 2022:
Observe the error.
Naturally this is a unix socket
It's unclear if this is supported. microsoft/WSL#134 I believe it is.
The text was updated successfully, but these errors were encountered: