I really really want an alternative to docker desktop. I don't like the path they're going down. I don't like the AI crap in the UI. The licensing is crazy. It just doesn't feel right.
So I've been lately using rancher by SuSE. Surprisingly, it's been all right. So far it just works. I'm using this on Mac OS.
If anybody's looking for an alternative that's one worth considering.
If it was compose + docker compatibility issues, that's on the roadmap for improvement :). Compose support is flakey at times (it's essentially a wrapper around the open source binary https://github.com/docker/compose)
https://github.com/containers/podman/issues/6234
It looks like there was some work done to resolve this in 2023 and 2024 but I know this was still happening for me in mid 2025. Podman is technically correct here but functionally broken in a way that keeps pushing me away because I don't have time to deal with that :(
https://github.com/containers/buildah/issues/6460
Also, there’s Podman’s decision to drop CNI support. Sure, I get that they want to support the full stack, but netavark is really not especially capable, and CNI allows all kinds of interesting (and frequently overcomplicated) things.
https://github.com/podman-desktop/podman-desktop/issues/1035...
Basically I had a 5 second periodic CPU spike after some update. Also I had some compose issues, and some issue with Fedora based WSL. These together were blockers for me at that point, but I'm using podman on my pet Fedora server, and it works (using quadlets there) perfectly there, and will retry it on Windows also when I get the time.
[0]: https://orbstack.dev
Selling enterprise licenses is a smart move from Redhat: they actually build/contribute to production grade container orchestration platforms like openshift. Unlike Docker Inc which looks like it only has the docker registry and Docker Desktop.
Are there any material differences between this and the free OSS Podman Desktop[1] released 4 years ago?
0: https://www.redhat.com/en/blog/introducing-red-hat-build-pod... 1: https://podman-desktop.io/
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. just need to run `brew upgrade` and `colima update` every once in a while to keep it up to date.
p0w3n3d•1h ago
cdrage•1h ago
Podman Desktop by default has a much lower RAM (4GB) + CPU usage (50% CPU). That's something that could be improved... I've opened up an issue: https://github.com/podman-desktop/podman-desktop/issues/1634... :)
p0w3n3d•13m ago
p0w3n3d•12m ago