From 12d249b6d60c20b21460084e03b77aa0f7db47ae Mon Sep 17 00:00:00 2001 From: Sagi Shnaidman Date: Sun, 19 May 2024 16:48:46 +0300 Subject: [PATCH] Add missing volume mount to README The current command fails if no mounted containers storage, add podman mount to fix it. Signed-off-by: Sagi Shnaidman --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c922d4c1..e22df593 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,7 @@ sudo podman run \ --security-opt label=type:unconfined_t \ -v $(pwd)/config.toml:/config.toml \ -v $(pwd)/output:/output \ + -v /var/lib/containers/storage:/var/lib/containers/storage \ quay.io/centos-bootc/bootc-image-builder:latest \ --type qcow2 \ --local \