Live data from Hacker News

Podman Desktop: A Free OSS Alternative to Docker Desktop

podman-desktop.io

171–180 of 202 posts

Re: Podman Desktop: A Free OSS Alternative to Docker Desktop

#171

Recently I started using colima[0], a drop in replacement for Docker Desktop on Mac, and have seen an increase in performance and battery life. You can use all the normal docker and docker compose commands. It does not have a GUI but you can use the Docker extension on VS Code to have an overview of running containers. [0] https://github.com/abiosoft/colima

Same here, it's what I've been recommending as the alternative.

Re: Podman Desktop: A Free OSS Alternative to Docker Desktop

#173
post #51

Recently I started using colima[0], a drop in replacement for Docker Desktop on Mac, and have seen an increase in performance and battery life. You can use all the normal docker and docker compose commands. It does not have a GUI but you can use the Docker extension on VS Code to have an overview of running containers. [0] https://github.com/abiosoft/colima

Replaced Desktop with `colima` as well few months ago. I've been using it daily since then. I did not have any issue, sometimes I just delete / start a instance to upgrade the docker version, it only takes few minutes. I like the fact that I decide when I upgrade, not Docker Desktop nagging me every week.

i wrote a quick howto a while ago for anyone looking to try this out https://www.swyx.io/running-docker-without-docker-desktop

Re: Podman Desktop: A Free OSS Alternative to Docker Desktop

#175

Recently I started using colima[0], a drop in replacement for Docker Desktop on Mac, and have seen an increase in performance and battery life. You can use all the normal docker and docker compose commands. It does not have a GUI but you can use the Docker extension on VS Code to have an overview of running containers. [0] https://github.com/abiosoft/colima

[deleted]

Re: Podman Desktop: A Free OSS Alternative to Docker Desktop

#176

The problem with podman at the moment (IMO) is version drift. RHEL/Fedora and friends get the latest and greatest (4), Debian/Ubuntu are stuck on 3.x. This isn't a problem with Docker, which has tight control over what is deployed. This means how you use Podman directly or indirectly via tools and plugins may change.

> The problem with podman at the moment (IMO) is version drift. RHEL/Fedora and friends get the latest and greatest (4), Debian/Ubuntu are stuck on 3.x.

Podman has no control on this. Each Linux distribution deals with packaging in its own way. If this packaging is not to your taste, podman can easily be installed from alternatives sources: unofficial deb packages, or plain binaries.

BTW, podman v4 is in debian/experimental. I don't know why it didn't land into unstable yet.

> This isn't a problem with Docker, which has tight control over what is deployed.

AFAIK, Docker (now Moby) has no control over what is packaged in Debian/Ubuntu (unless the Debian maintainer works for Moby?). If you install Docker from the official Debian repositories, the "docker" package is an alias for "docker.io", which is a version 20.10.19 in debian/unstable. The latest 20.10.21 is not yet packaged by Debian.

Re: Podman Desktop: A Free OSS Alternative to Docker Desktop

#177
post #111

Earlier quoted context omitted.

At the moment podman machine on macOS uses Qemu and their filesharing stack. Qemu allowed us to move quickly utilizing the same deployment stategy. However I work on CRC (a related project) and we have a driver based on virtualization framework using virtiofs. We hope to integrate this in `podman machine` soon as it will improve performance. Ideally we want to boot with the kernel and ramdisk provided by the image, t…

This is exciting news! Is there an issue or something similar I can subscribe to to track progress?

The current driver lives at http://github.com/crc-org/vfkit and is being tested in crc. It would be ideal if you put the request out via an issue https://github.com/containers/podman/issues/new/choose I will follow-up on this. Community feedback will lead to a demand/request as it speaks louder

Re: Podman Desktop: A Free OSS Alternative to Docker Desktop

#178
post #73

Earlier quoted context omitted.

Homebrew handles this kinda poorly, so people are often confused. `brew install docker` installs the Docker CLI. `brew install --cask docker` installs Docker Desktop, and if you've permanently tapped homebrew-cask you'll get that instead of the Docker CLI.

omg that is terrible

Linux user here. It's not terrible. It's funny.

Re: Podman Desktop: A Free OSS Alternative to Docker Desktop

#179
post #34

Earlier quoted context omitted.

The main benefits touted are that Podman can run rootless containers and it doesn’t need a daemon compared to Docker. However those comparisons are less relevant now than they were a while ago because Docker can now run rootless containers and Podman has developed a heap of systemd hooks that effectively use that as the daemon. It does have some good features though, like being compatible with Kubernetes manifests. I…

> Podman has developed a heap of systemd hooks that effectively use that as the daemon. Does that mean Podman is not technically ... rootless?

It can still be rootless by using systemd —-user which allows non privileged users to create units and such.

Re: Podman Desktop: A Free OSS Alternative to Docker Desktop

#180
post #49
post #38

Talking about containers: is there an easy way to run “system” containers? This is, containers that run systemd and everything else you would expect to be running on a normal Linux OS. I rely heavily on VMs to simulate cloud environments, but I would love to use lightweight containers instead. Also, these “system” containers should be able to run containers inside them as well (docker in docker?). I saw something on…

LXC/LXD are probably the closest to that on Linux, although I'm not sure about nesting containers.

It works. Used it just 1 hour ago last time.

lxc launch ubuntu:22.04 docktest -c security.nest

More on https://bobcares.com/blog/lxd-and-docker-containers-nesting/

Post reply on HN