From 82bc8885c7c2ce59ea8ee3cdac96ce2b72ed3527 Mon Sep 17 00:00:00 2001 From: Lars Gohlke Date: Mon, 6 Jan 2025 16:58:43 +0100 Subject: [PATCH] adds colima as docker-engine alternative --- tools/system_macosx.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tools/system_macosx.sh b/tools/system_macosx.sh index 2145542..65212f5 100644 --- a/tools/system_macosx.sh +++ b/tools/system_macosx.sh @@ -6,8 +6,9 @@ fi function init_installed_programs(){ - brew install topgrade + + brew install topgrade # updates brew install bash # use more uptodate version than v3 # window placement @@ -21,4 +22,9 @@ function init_installed_programs(){ # System monitor for the menu bar brew install --cask stats + + # docker + brew install docker + brew install colima + brew services start colima }