Reputation: 3241
I'm running macOS High Sierra on a Mid 2014 MacBook Pro. Installed Docker but when I try to run the docker
command from the command prompt I get an immediate Segmentation Fault: 11
error.
How do I debug this?
Upvotes: 0
Views: 3443
Reputation: 1483
I ran into this same Problem on Mac OS Big Sur Beta 10. I was able to get docker working by uninstalling virtualbox completely (Moving Virtualbox app to bin did not work).
Downloading VB installer and running uninstall_tool (bottom right on the installer), removed everything Virtualbox and Docker started fine
Upvotes: 6
Reputation: 374
Docker is server-client system so you should specify which is the cause of trouble, server or client, at first.
docker info
is a way to check whether Docker server is running.
The operating-system independent way to check whether Docker is running is to ask Docker, using the docker info command.
Upvotes: 0