Reputation: 181
When i turned on my Mac I am getting this 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
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
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
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:
activity monitor
, then hit enterdocker
, you will see the docker
process in red with (not responding)Upvotes: 21