3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Docker Desktop起動時にUnexpected WSL errorが起きる

Last updated at Posted at 2023-08-19

TL;DR

  • wsl.exe --listを確認して、WSLの一覧を確認する。
  • 既定がdocker-desktop-data でない場合は、wsl.exe --set-default docker-desktop-data を実行する。

実行環境

  • Windows 10
  • Docker Desktop 4.22.0

発生した問題

Docker Desktopを起動を試みた時、Docker Desktopが起動・表示されると同時に、「Docker Desktop - Unexpected WSL error」というエラーダイアログが出た。画像は下。 スクリーンショット 2023-08-19 11.08.10.png
 その後、docker-compose upなどのコマンドを実行するとエラーdocker daemon is not runningが起きた。(起動は中断されたらしい。)

試したこと(解決しなかった)

上述のダイアログに記載された対応のうち、下記を試した。解決しなかった。

  • wsl --shutdown
  • PC再起動
  • Docker Desktopのアンインストール・再インストール

解決

  • コマンドプロンプトでWSL一覧を確認した。
>wsl --list
Linux 用 Windows サブシステム ディストリビューション:
rancher-desktop-data (既定)
docker-desktop
rancher-desktop
docker-desktop-data
  • wsl --set-default docker-desktop-data を実行した。
  • wsl --listを再度実行して、docker-desktop-dataが(既定)に変わったことを確認した。
  • Docker Desktopを起動した。上述の問題は再発しなかった。
3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?