MacOS 버전이 Monterey 12.3이하 버전은 Colima 메모리(확장불가) 이슈가 있다
복잡한 설정이 필요없다
# 설치
brew install docker docker-compose colima
# 갱신
echo 'export DOCKER_HOST="unix://${HOME}/.colima/docker.sock"' >> ~/.zshrc && source ~/.zshrc
# 실행
colima start --cpu 4 --memory 16 --disk 300 --network-address --kubernetes=false
# 구동 확인 // "Hello from Docker!" 내용이 출력되면, 정상적으로 설치 되었습니다
docker run hello-world