Why podman and not Docker?
It supports Kubernetes *.yaml manifests?
Podman Desktop celebrates 3M downloads
31–40 of 82 posts
Re: Podman Desktop celebrates 3M downloads
#32I'm glad they have podman desktop. Personally though, once I realized that I can use the command line version without it (unlike docker in my experience) I uninstalled it as I don't really need the UI / KIND, etc. For me the command line is fine and having something where I don't have to first shell into wsl is great (it just runs it itself behind the scenes). Of course, Linux is generally better for development imo…
For mac, wouldn't it be just easier to use lima from cli? How does Podman compare to that? Docker unless on Linux has always being a bloat. Or are there any lightweight hypervisor on top of firecracker alternative? At this point with the way systemd is going, we should just switch back to VM? Everything is just more mature on native OS install. Docker to Linux, just feels kinda like SPA reinventing the html parsing o…
On Apple Silicon machines however, latest podman version uses VM images which Rosetta doesn't work with, and hence it will use qemu for running amd64 containers. You can fix this by either installing podman 5.5 or create the VM from and older image [1]. My only complaint here is that the stock machine images are pretty large (~1G )
If you use containers to run tools that create files in your host (i.e. build tools), then you can use your host username as the default in the VM (machine init --username $(id -un)), and then run containers with --userns=keep-id. That way the the container command starts with the same username and uid as you host user - this is pretty tricky to get working with docker, from my experience.
We use Bazel as our build tool and we create a lot of images based on shared layers. Bazel produces oci layout directories that contain descriptors and symlinks to the actual layer tars. Podman can start a container "directly" from these directories[2], which speeds up image testing considerably, since it can detect known layers immediately. With docker you have to stream a tarball with all the layers and descriptors to the docker daemon, only for it to discover that it already knows most of the layers.
[1] https://docs.podman.io/en/latest/markdown/podman-machine-ini... - machine images https://quay.io/repository/podman/machine-os
[2] podman run oci://
Re: Podman Desktop celebrates 3M downloads
#33Earlier quoted context omitted.
Better integration with systemd
That's funny. To me one of the whole point of containers is that it's not systemd that's PID1. Combine that with a distro like Talos, an immutable Linux distro that contains less than ten executables and where none of them is systemd and... At long last containers and stuff like Talos show a path leading to, in a not-so-distant future, a world where we can be systemd and [ini]/microsoft config files (from a microsoft…
Re: Podman Desktop celebrates 3M downloads
#34Earlier quoted context omitted.
I wasted my time trying podman and switched to colima. It's the only usable free alternative that's a true drop-in replacement for docker.
colima is great. I've also had good luck with rancher-desktop too.
Re: Podman Desktop celebrates 3M downloads
#35Re: Podman Desktop celebrates 3M downloads
#36my interaction with docker is limited to a make file that has a `docker-compose up` command, would podman work if the rest of my team is still on docker ?
Re: Podman Desktop celebrates 3M downloads
#37Why podman and not Docker?
Re: Podman Desktop celebrates 3M downloads
#38Earlier quoted context omitted.
> unlike docker in my experience You have piqued my curiosity. What does Docker Desktop do that the CLI cannot?
`docker machine` was deprecated in favor of Docker Desktop in order to funnel people towards paid licenses. But there's no real reason Docker on non-Linux should need a GUI.
The reason we launched Docker Desktop (initially known as "Docker for Mac") was to make the user experience better: easier to install, better integrated with the system (virtualization APIs, keychain, VPNs, etc), and better support for host volumes.
Re: Podman Desktop celebrates 3M downloads
#39I've seen podman advertised as a dropin docker replacement. how valid is that assertion?
Everything else has been working as a drop-in replacement.
Re: Podman Desktop celebrates 3M downloads
#40I'm glad they have podman desktop. Personally though, once I realized that I can use the command line version without it (unlike docker in my experience) I uninstalled it as I don't really need the UI / KIND, etc. For me the command line is fine and having something where I don't have to first shell into wsl is great (it just runs it itself behind the scenes). Of course, Linux is generally better for development imo…
For mac, wouldn't it be just easier to use lima from cli? How does Podman compare to that? Docker unless on Linux has always being a bloat. Or are there any lightweight hypervisor on top of firecracker alternative? At this point with the way systemd is going, we should just switch back to VM? Everything is just more mature on native OS install. Docker to Linux, just feels kinda like SPA reinventing the html parsing o…
Zero problems with Podman Desktop.