2/25/2026 at 4:03:30 PM
The best alternative to Docker Desktop on macOS is to abandon the GUI entirely use colima to create the linux VM. brew install colima docker docker-buildx docker-completion docker-compose
export DOCKER_HOST="$HOME/.colima/docker.sock" >> ~/.zshrc
source ~/.zshrc
colima start --cpus 8 --vz-rosetta --ssh-agent --mount $HOME:w
then add this line to your $HOME/.docker/config.json "cliPluginsExtraDirs": ["/opt/homebrew/lib/docker/cli-plugins"],
that will get you a fast virtiofs VM with the latest docker, including compose and buildx. it may seem scary to replace an officially blessed tool like Docker Desktop, but i have had zero issues with colima. it isn't "docker compatible". it's docker. just need to run `brew upgrade` and `colima update` every once in a while to keep it up to date.
by y0ssar1an
2/25/2026 at 6:19:34 PM
I've been using Finch (https://runfinch.com/) for the last few years, it basically is a managed Lima, nerdctl, containerd and BuildKit.I just alias docker to finch and it just works.
by jpalmer
2/25/2026 at 6:16:58 PM
If you're going full CLI on macOS, I've had the best experience with: brew install podman
Podman manages the linux vm for you automatically.I've come to enjoy podman more than docker on my linux hosts anway; the default runtime (crun) is lighter than docker (runc), podman-kube-play is great for managing multi-container pods and is compatible with kubernetes. It also integrates very neatly with systemd. Of course there is the whole daemon-less and rootless side of the things as well..
by seemaze
2/25/2026 at 4:50:12 PM
I’ve been using OrbStack instead of Docker Desktop and gotta say, I’d not replace it with anything else. So if anyones looking for a more automated alternative, check out OrbStack.by eknkc
2/25/2026 at 4:55:11 PM
I hear great things about OrbStack; unfortunately the licensing tied to their free offering doesn't play nicely with corporate environments (and we're cheap!).I switched to Colima instead and couldn't be happier.
by cathalc
2/25/2026 at 4:07:46 PM
Does this support volume bind mounts and port forwarding?by jaimehrubiks
2/25/2026 at 4:32:28 PM
You can see the command above mounting a volume”—mount $HOME:w”
by Alifatisk
2/25/2026 at 7:19:11 PM
Thank you!!! Been struggling with time skew on Podman desktop for around a year now with no fix in sight. At least in the initial test since I saw your comment a few hours ago, this is working great!by a456463
2/25/2026 at 9:01:13 PM
Tried Podman about a month ago; UI was kinda meh, 'compose' was beyond unusable... then tried Colima (+ lazydocker, a lightweight, beautiful TUI providing the little overview I need) and haven't looked back for a single second.by raulparada
2/25/2026 at 6:18:32 PM
Same, been running on colima for years now and haven't had a single issue with itby hmokiguess
2/25/2026 at 5:09:21 PM
I you fancy needing a GUI, rancher desktop is decent.by stock_toaster