windows10においてDockerを利用しようとしてます。
#WSL有効化
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
#仮想マシンプラットフォーム有効化
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
より
x64 マシン用 WSL2 Linux カーネル更新プログラム パッケージ
をダウンロードし実行
#wsl2をデフォルトに設定
wsl --set-default-version 2
Docker for Windowsをインストール
https://hub.docker.com/editions/community/docker-ce-desktop-windows/
ここまででDocker for windowsはrunning状態になっていましたが、
docker ps コマンドを打つと
PS C:\WINDOWS\system32> docker ps
error during connect: Get "https://192.168.99.102:2376/v1.24/containers/json": dial tcp 192.168.99.102:2376: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
と表示され正しく動作していないようです。
Dockerインストール後にPCの再起動は行いました。
分かる方教えてください。
以上、宜しくお願い致します。
ちなみに
docker versionなどは実行できます
PS C:\WINDOWS\system32> docker --version Docker version 20.10.7, build f0df350 PS C:\WINDOWS\system32> docker run hello-world docker: error during connect: Post "https://192.168.99.102:2376/v1.24/containers/create": dial tcp 192.168.99.102:2376: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. See 'docker run --help'.
回答1件
あなたの回答
tips
プレビュー