VOOZH about

URL: https://thenewstack.io/whats-new-with-podman-5-multiplatform-images-vm-support/

⇱ Podman 5 Arrives with Multiplatform Images, VM Support - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2024-04-04 05:00:30
Podman 5 Arrives with Multiplatform Images, VM Support
Containers / Linux

Podman 5 Arrives with Multiplatform Images, VM Support

All of the changes made to Podman culminate in a much more flexible and responsive container runtime engine.
Apr 4th, 2024 5:00am by Jack Wallen
👁 Featued image for: Podman 5 Arrives with Multiplatform Images, VM Support
Podman site.

If you’ve been using Podman for your container deployments or development, you’re in for a treat. Red Hat recently launched version five of the Podman container management system, which has completely reworked the code for Podman’s virtual machine management tool (podman-machine).

“Podman machine includes a set of subcommands that manage Podman’s virtual machine, which is necessary for users to be able to run Podman on MacOS or Windows,” the official release announcement.

With Podman 5.0, there are a number of new features and improvements, including the new podman machine reset option which simplifies the process of resetting Podman machines; a new subscription manager and qemu-user-static features for Podman machines; faster boot times for Podman machines; podman farm build for quickly building multiplatform images on remote machines; podman manifest, which adds support for Open Container Initiative artifacts; and a change to the rootless networking tool for a more performant network stack.

All of the changes made to Podman culminate in a much more flexible and responsive container runtime engine.

The thing is, the ability to use Podman 5 at the moment is fairly limited. As far as I can tell, the only way to get/test Podman 5 as of this week is via Fedora Linux, as the only version available within other distributions’ repositories is 4.x. And with Fedora, the only way to install Podman 5 is via the development version.

How to Install Podman 5 on Fedora

First off, I wouldn’t recommend installing the development version of Podman on a production machine. Use this on a test environment only. I also wouldn’t recommend doing this on a virtual machine, as Podman will have trouble accessing the KVM system.

The other issue is that you can’t use any version of Fedora prior to Fedora 40 beta 1. If you’re using a release of Fedora that is 39 or earlier, this will not work. So, the first thing you’ll need to do is download an ISO of Fedora 40 beta. Once you’ve done that, create a bootable flash drive, boot into Fedora 40 beta 1, and install the OS.

After Fedora 40 beta 1 is installed, you can then install the development version of Podman 5.0 with the command:

sudo dnf update --refresh --enablerepo=updates-testing podman

Once that’s done, you can verify the installation with:

podman --version

You should see something like this in the output:

podman version 5.0.1

Using Podman 5

One of the best features of Podman 5.0 is the ability to quickly reset machine environments. This command stops all running machines and removes them. As well, configuration data files (such as machine disk images and previously pulled cached images) are also removed. The command only has one option, which is –force (or just -f), which resets everything without confirmation.

Let’s say, for example, you’ve created a few machines like so:

  • podman machine init dev1
  • podman machine init dev2
  • podman machine init web1
  • podman machine init web2

You then started them with the commands:

podman machine start dev1
podman machine start dev2
podman machine start web1
podman machine start web2

Next, you accessed each machine with the command:

podman machine ssh NAME

Where NAME would be one of dev1, dev2, web1, or web2.

Once you’ve accessed the machine, you worked your development magic, ran some tests, or whatever it was you needed to do with the machines. After you’ve completed working with those machines, if you want to get rid of them with Podman 4.x, you would have had to individually stop them and then remove them with the commands:

podman machine stop NAME
podman machine rm NAME

Where NAME would be one of dev1, dev2, web1, or web2.

With Podman 5.0, that can all be done with the command:

podman machine reset

All of your machines will be stopped and deleted (along with associated files and data).

The new version also includes the podman farm build command, which builds images on farm nodes, then bundles them into a manifest list. I’ve not tested this feature yet, but according to the man page (read it with man podman-farm):

Podman manages the farms by writing and reading the podman-connections.json file located under $XDG_CONFIG_HOME/containers or if the env is not set it defaults to $HOME/.config/containers. Or the PODMAN_CONNECTIONS_CONF environment variable can be set to a full file path which podman will use instead. This file is managed by the podman commands and should never be edited by users directly. To manually configure the farms use the [farm] section in containers.conf.

For those who don’t use Fedora 40, I have found no indication as to when it will be available for different distributions. If I had to guess, Podman 5.0 will hit Red Hat Enterprise Linux this year with the 9.4 release. Should that happen, it’ll most likely find its way to the likes of Rocky Linux, AlmaLinux, and Oracle Linux soon after.

It’s also important that, before updating to Podman 5.0, users understand that Podman 4 machines will not be compatible with Podman 5.0. Because of that, you should remove all Podman 4 machines before upgrading to 5.0. After removing those machines and upgrading to Podman 5.0, it’s also recommended that you run the podman machine reset command before deploying any new machines.

To find out more about Podman 5.0, check out the new feature summary post on the Podman site.

TRENDING STORIES
Jack Wallen is what happens when a Gen Xer mind-melds with present-day snark. Jack is a seeker of truth and a writer of words with a quantum mechanical pencil and a disjointed beat of sound and soul. Although he resides...
Read more from Jack Wallen
SHARE THIS STORY
TRENDING STORIES
Oracle and Red Hat are sponsors of The New Stack.
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.