0
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.

Curl で install した Docker の削除方法

Posted at

背景

以下の記事を試していた。

その際に、Docker を利用する箇所があったが、記事のままに進めたところ、apt ではなく、curl で install をした結果、削除方法がよくわからず困ったので記録まで。

といっても、BingAI 君に聞いたらあっという間だったので・・もうこういう備忘録すら要らないんじゃね?とも思うけれど、有償化される可能性もなくはない、ということで

Bing AI さんの回答

curl でinstall した docker on wsl2 を削除したいということですね。その場合、以下の手順を試してみてください。
WSL2 の Ubuntu で sudo apt-get remove docker-ce を実行して、Docker Engine をアンインストールします1。
WSL2 の Ubuntu で sudo rm -rf /var/lib/docker を実行して、Docker のデータを削除します2。
Windows の PowerShell で wsl --unregister を実行して、WSL2 のディストリビューションを削除します3。
これで curl でinstall した docker on wsl2 を削除することができます。ご参考になれば幸いです。

で、改めて apt install するなら、以下から

以上

0
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
0
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?