From aea30264d40d6ea41ebaa96e4e162931c10dd088 Mon Sep 17 00:00:00 2001 From: cediackermann Date: Wed, 15 Apr 2026 15:23:08 +0200 Subject: [PATCH] fixed docker setup --- setup.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index 4d73982..14dba55 100755 --- a/setup.sh +++ b/setup.sh @@ -93,12 +93,17 @@ if [ -d "/Applications/Docker.app" ]; then print_success "Docker Desktop is already installed" else print_warning "Installing Docker Desktop via Homebrew..." - brew install --cask docker + brew install --cask docker-desktop print_success "Docker Desktop installed" fi print_warning "Opening Docker Desktop..." -open -a Docker +if [ -d "/Applications/Docker.app" ]; then + open -a Docker +else + print_error "Docker.app not found in /Applications. Please install Docker Desktop manually." + exit 1 +fi echo "" echo "MANUAL STEP REQUIRED:"