From c36ac52d9188d3462ff72ab64f7e9667dc0182eb Mon Sep 17 00:00:00 2001 From: Jiri Podivin Date: Fri, 12 Feb 2021 16:38:35 +0100 Subject: [PATCH] Modifies README.rst to reference podman. Thank you dpeacock for pointing out this oversight. Signed-off-by: Jiri Podivin Change-Id: I9ae7309495458ba35a723e13c94d9dc85c8c45e9 --- README.rst | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 45533851..9760c5dd 100644 --- a/README.rst +++ b/README.rst @@ -15,14 +15,14 @@ copy one into your desired location and rename to ``Vagrantfile``, then run:: Once complete you will have a clean development environment ready to go for working with Validation Framework. -Docker Quickstart +podman Quickstart ================= A Dockerfile is provided at the root of the Validations Library project in order to quickly set and hack the Validation Framework, on a equivalent of a single machine. Build the container from the Dockerfile by running:: - docker build -t "vf:dockerfile" . + podman build -t "vf:dockerfile" . From the validations-libs repo directory. @@ -30,9 +30,14 @@ From the validations-libs repo directory. More complex images are available in the dockerfiles directory and require explicit specification of both build context and the Dockerfile. +Since the podman build uses code sourced from the buildah project to build container images. +It is also possible to build an image using:: + + buildah bud -t "vf:dockerfile" . + Then you can run the container and start to run some builtin Validations:: - docker run -ti vf:dockerfile /bin/bash + podman run -ti vf:dockerfile /bin/bash Then run validations::