🐳

Docker DesktopからColimaへ移行した

に公開

DockerDesktopからColimaに移行

DockerDesktopは有料化した且つk8sでも非推奨になったらしいのでColimaに移行。
Colimaとは:https://github.com/abiosoft/colima

手順

1.Dockerを完全削除:https://www.drbuho.com/jp/how-to/uninstall-docker-mac

2.brewでcolimaインストール

brew install colima

3.Colima起動
私はIntel製のMacなので以下のコマンドでいい感じ。

colima start --cpu 8 --memory 12 --disk 128 --vm-type qemu --mount-type virtiofs

M1、M2などのapple製の人は、以下はいいらしい。

colima start --cpu 8 --memory 12 --disk 128 --arch aarch64 --vm-type=vz --vz-rosetta --mount-type virtiofs
  1. .zshに以下追記
export DOCKER_HOST="unix://$HOME/.colima/docker.sock"

Colimaのログは以下で確認

less ~/.colima/_lima/colima/ha.stderr.log

Discussion