Podman v6.0.0

blog.podman.io

381 points by soheilpro 10 hours ago


SwellJoe - 6 hours ago

No idea why Docker is still so much more popular than Podman. Podman is obviously the better implementation.

The new network stuff is a welcome improvement.

cdmckay - 4 hours ago

After Docker Desktop randomly started consuming insane amounts of memory again we switched to Podman and it was literally as easy as installing it and pointing it at our docker-compose.yml.

Zero changes needed and now I don’t need to keep a daemon running.

Great software.

- 11 minutes ago
[deleted]
mati365 - 4 hours ago

I really love Quadlet. I used to host my rootless containers on Hetzner, Ansible, SystemD and RockyLinux for years without any issues and extracted it to template repo [1].

[1] https://github.com/Mati365/hetzner-podman-bunjs-deploy

roger_ - 6 hours ago

Anyone have experience switching from Docker to Podman?

I have a lot of compose files in my homelab/automation setup and those are what I’m most concerned about.

PufPufPuf - 4 hours ago

One thing I don't like about Podman is that it pretends to be docker-compatible while having some minor differences that will come to bite you. And users of your docker-based project who try to run it on Podman will come to you and complain.

satvikpendem - 4 hours ago

How is Podman these days? I use OrbStack on macOS and it seems to be much faster, not sure how everything will shake out now that macOS 27 is adding (more) native and performant Linux containers, similar to WSL with micro-VMs.

jimmar - 5 hours ago

Quadlets and rootless containers are two major reasons I'll be switching from Docker to Podman.

Tepix - 4 hours ago

I like Podman, but what's up with that grey text colour? It looks ugly and the contrast of 4.96:1 makes it hard to read (does not reach WCAG AAA level).

muti - 3 hours ago

Cool, been running my home server on podman + quadlets for about two years now and picked up a couple of things in the release notes

  podman quadlet list
Added in v5.6.0, lists quadlets and their containers

  podman system migrate --migrate-db
Flag added in v5.8.0. I remember seeing the bolt db deprecation warnings in the past but there was no tool to do the migration to sqlite, now there is (or just upgrade to podman 6.0.0 and it will do it automatically)
himata4113 - 3 hours ago

Does anyone have experience with using podman image builds for cri runtimes other than docker?

If I build an image with podman will it run in cri-o, docker and other misc runtimes?

Been debating on using rootless podman for building images since docker build requires sudo and it gets annoying with agentic workflows.

a_t48 - 2 hours ago

If any Podman engineers are here: does the new /libpod/local/artifacts/add endpoint let me ingest individual layers? I have an alternative pull client that's currently a little hamstrung on Podman compared to docker+containerd, due to having to convert the entire image to tarball to ingest rather than only new layers.

mjburgess - 6 hours ago

Sanctuary! mercy from grey font

- 4 hours ago
[deleted]
jdoe1337halo - 5 hours ago

I'd love to switch to Podman but I use Coolify for all of my deployments and it is Docker based, so I am kind of locked into that ecosystem for now

buredoranna - 3 hours ago

Top of my list as to why I prefer podman...

no "container root" / "docker group" = "host root" shenanigans

podman doesn't spew garbage and punch holes in my firewall (iptables)

(edit: formatting)

alessandroberna - 6 hours ago

I love the naming of their new networking tools. Now there's pesto to go along with pasta

audidude - 4 hours ago

Does it still completely screw up file/group owners in user containers? Because they keep saying it gets fixed and then that 1 out of 10 times it's not.

lorbus - 3 hours ago

single-file quadlets go

bioninf_n_door - 5 hours ago

[flagged]

LinXitoW - an hour ago

I don't understand how podman can be used for serious development work. Sure, if you want to be bound to one single platform (linux), and create a bunch of individual files, you can sort of get something a little bit like compose.

But the beauty of compose is the same as the beauty of the Dockerfile. Portability, reproducibility (mostly), and a single readable file with all the relevant parts. It means a developer can use the same compose file locally that's used for deployment.

How do people actually work with podman? Do you work with a team? How do you setup a local development stack the way you would with compose?