Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Issue-6793 #7623

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,31 @@ E0131 10:04:36.405721 1193 reflector.go:205] k8s.io/kubernetes/pkg/kubelet/ku

This is not a problem: this is `kubelet` trying to connect to API server when
the latter is not reading ready yet.


Error - Docker not found when freshly installed on Mac #6793

Solution -

Step 1: Add Docker to System PATH

Manually add Docker to your path by running on terminal:

export PATH="/Applications/Docker.app/Contents/Resources/bin:$PATH"

Then verify by running:

docker —version

If this works, make the change permanent by adding it to your zsh profile:

echo 'export PATH="/Applications/Docker.app/Contents/Resources/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc

Step 2: Restart Docker Desktop

a. Quit Docker Desktop (Cmd + Q)
b. Reopen Docker Desktop from Applications
c. Wait until it fully starts, then checkdocker ps

If this shows running containers, Docker is working.