From 58f56732fffcd2d528f0939ce359b02a0abd29e4 Mon Sep 17 00:00:00 2001 From: aevesdocker Date: Fri, 10 Jan 2025 11:04:37 +0000 Subject: [PATCH 1/2] homebrew addition --- content/manuals/desktop/cert-revoke-solution.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/content/manuals/desktop/cert-revoke-solution.md b/content/manuals/desktop/cert-revoke-solution.md index f3cccaa6553e..fd4f9cacba42 100644 --- a/content/manuals/desktop/cert-revoke-solution.md +++ b/content/manuals/desktop/cert-revoke-solution.md @@ -100,3 +100,16 @@ echo "Install new binaries..." sudo cp /Applications/Docker.app/Contents/Library/LaunchServices/com.docker.vmnetd /Library/PrivilegedHelperTools/ sudo cp /Applications/Docker.app/Contents/MacOS/com.docker.socket /Library/PrivilegedHelperTools/ ``` + +## Homebrew casks + +If you installed Docker Desktop using Homebrew casks, the recommended solution is to perform a full reinstall to resolve the issue. + +To reinstall Docker Desktop, run the following commands in your terminal: + +```console +brew update +brew reinstall --cask docker +``` + +These commands will update Homebrew and completely reinstall Docker Desktop, ensuring you have the latest version with the fix applied. From 671dfd3f19149270cd0e9e82ad4e8c53d5a5a589 Mon Sep 17 00:00:00 2001 From: aevesdocker Date: Fri, 10 Jan 2025 11:12:13 +0000 Subject: [PATCH 2/2] fix command formatting --- content/manuals/desktop/cert-revoke-solution.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/manuals/desktop/cert-revoke-solution.md b/content/manuals/desktop/cert-revoke-solution.md index fd4f9cacba42..adcf0e995f43 100644 --- a/content/manuals/desktop/cert-revoke-solution.md +++ b/content/manuals/desktop/cert-revoke-solution.md @@ -108,8 +108,8 @@ If you installed Docker Desktop using Homebrew casks, the recommended solution i To reinstall Docker Desktop, run the following commands in your terminal: ```console -brew update -brew reinstall --cask docker +$ brew update +$ brew reinstall --cask docker ``` These commands will update Homebrew and completely reinstall Docker Desktop, ensuring you have the latest version with the fix applied.