Replies: 7 comments 5 replies
-
Well, casks do not install to |
Beta Was this translation helpful? Give feedback.
-
This issue will be helpful |
Beta Was this translation helpful? Give feedback.
-
Docker CLI tools are installed under $HOME/.docker/bin -- so docker is not available on the CLI by default. You can update your PATH or go to Docker Desktop settings -> Advanced -> select "System (Requires password)" By default docker only installs the cli binaries into $HOME/.docker/bin and the user must manually add that to their path. |
Beta Was this translation helpful? Give feedback.
-
This is a solution which worked for me :
the hint was :
Hope it helps some |
Beta Was this translation helpful? Give feedback.
-
The issue described is that the docker command suddenly stopped being recognized by the system. The following steps resolved the issue:
These steps helped reconfigure the Docker CLI tools and restored the ability to use the docker command on the system. |
Beta Was this translation helpful? Give feedback.
-
I opened Homebrew/homebrew-cask#146078 specifically about this exact issue For now, these workarounds seem to work: First, run a) Open the app. Click on Troubleshoot (next to the Settings gear). Click Uninstall. Once you get the pop-up. Then, reopen the app. The setup page should appear. You can either keep it as System or pick User, both should work |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
I installed Docker Desktop for Mac (apple silicon) using Homebrew, but docker command not available after installation. Computer restarted.
.zshrc content:
if type brew &>/dev/null
then
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}"
autoload -Uz compinit
compinit
fi
Which step did i miss?
Thanks for any help :)
Beta Was this translation helpful? Give feedback.
All reactions