Skip to content

Commit 3872a50

Browse files
committed
install docker on macos
1 parent 9dcc3f2 commit 3872a50

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/quality-checks.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,18 @@ jobs:
419419
ref: ${{ env.BRANCH_NAME }}
420420
fetch-depth: 0
421421

422+
- name: Install Docker Desktop
423+
run: |
424+
brew install --cask docker
425+
sudo /Applications/Docker.app/Contents/MacOS/Docker --unattended --install-privileged-components
426+
open -a Docker
427+
# Wait for Docker to start
428+
while ! docker system info > /dev/null 2>&1; do
429+
echo "Waiting for Docker to start..."
430+
sleep 5
431+
done
432+
echo "Docker is ready!"
433+
422434
- name: Build dev container
423435
run: |
424436
docker build -f .devcontainer/Dockerfile -t dev-container-image .

0 commit comments

Comments
 (0)