From 15996014db529791cd116c169fc2da591936f8c7 Mon Sep 17 00:00:00 2001 From: Nitesh Konkar Date: Tue, 1 Oct 2019 19:21:57 +0530 Subject: [PATCH] osbuilder: Update README about `USE_PODMAN` variable `USE_PODMAN` variable needs to be set for the osbuilder scripts to use podman as a containerization engine to build initrd/rootfs images. If both are set, `USE_DOCKER` would take precedence over `USE_PODMAN` Fixes: #370 Signed-off-by: Nitesh Konkar --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b39bfb4fa..ad56daf5e 100644 --- a/README.md +++ b/README.md @@ -75,8 +75,9 @@ distro specific commands (e.g.: `debootstrap` for Debian or `yum` for CentOS). The `dracut` build method uses the distro-agnostic tool `dracut` to obtain the same goal. By default components are run on the host system. However, some components -offer the ability to run from within Docker (for ease of setup) by setting the -`USE_DOCKER=true` variable. +offer the ability to run from within a container (for ease of setup) by setting the +`USE_DOCKER=true` or `USE_PODMAN=true` variable. If both are set, `USE_DOCKER=true` +takes precedence over `USE_PODMAN=true`. For more detailed information, consult the documentation for a particular component.