Parmveer Singh
Parmveer Singh

Reputation: 181

Docker - Failed to ping backend

When i turned on my Mac I am getting this enter image description here This window is not letting me select. When i try to uninstall the Docker from Mac Applications it says that Docker is still running. Please help. Thanks

Upvotes: 14

Views: 3850

Answers (4)

Immanuel
Immanuel

Reputation: 63

killall Docker in terminal fixed the issue for me

Upvotes: 4

Farid Haq
Farid Haq

Reputation: 4191

I fixed it by removing Setting.json code from my local pc

$ pwd
$ cd ~/Library/Group\ Containers/

Group Containers$ ls -la | grep "group.com.docker"
Group Containers$ group.com.docker

Group Containers$ cd group.com.docker
group.com.docker $ cat settings.json

Group Containers $ rm -rf group.com.docker

Now run it again.

Upvotes: 5

Ashok
Ashok

Reputation: 3581

Kill the running process using the command top | grep "Docker" then get the PID and kill the PID using the command kill <your_pid.

Goto your root folder in your Finder make sure permissions for your user were Read & Write and also make sure that those permissions are were applied to items enclosed.

Try restarting the Docker and it should up and running

Upvotes: 0

Mubarak Abubakar Bunza
Mubarak Abubakar Bunza

Reputation: 319

I am also having a similar issue, and wanted to force quit the app, so I tried cmd + options + esc, but couldn't find the app in the options.

I finally solved the issue by killing the docker process using Activity Monitor.

Steps:

  1. Search for activity monitor by pressing (cmd + space), start typing activity monitor, then hit enter
  2. Go to search bar and type docker, you will see the docker process in red with (not responding)
  3. Double click on the docker process
  4. Click Quit and select Force quit.

Upvotes: 21

Related Questions