I've been struggling with Docker Desktop on my M1 Mac Mini for some reason. When I try to launch the app, nothing happens—no window appears at all. I've checked the logs for clues, and here's what I've found:
- The Docker backend starts running its services, but then the backend monitor unexpectedly exits.
- Docker Desktop seems to need some kind of privileged access for port mapping, which might be part of the problem.
- I keep seeing repeated 'wait status: 256' entries, and eventually, the engine shuts down before setting up the daemon socket.
Does anyone have any tips or suggestions on how I can get Docker working again?
4 Answers
Have you tried using Colima instead of Docker? It’s another container management solution that works well on Macs and might solve your issues.
You could uninstall Docker and consider setting up a new VM to run it. Here’s a quick rundown:
1. Uninstall Docker Desktop.
2. Check out UTM for running virtual machines.
3. Download a Debian ISO.
4. Follow the Docker installation guide for Debian.
5. SSH into your VM to transfer your compose files or execute commands.
6. You can configure it to start up on reboot if you want to.
I’d recommend uninstalling Docker, rebooting your Mac, and then reinstalling it. Sometimes that can clear up weird bugs like this.
I had a similar issue! What worked for me was uninstalling Docker Desktop and then installing OrbStack instead. Ever since I made that switch, everything has been smooth sailing.
Came to say this! It's really made a difference for me, too.

This approach sounds interesting! I'll give it a try.