Build Image Log ---------- ID: httpd Image: quay.io/bootc-extension/httpd Type: qcow2 Folder: /home/sumantro ---------- { "name": "httpd-bootc-image-builder", "Image": "quay.io/centos-bootc/bootc-image-builder:latest-1714633180", "Tty": true, "HostConfig": { "Privileged": true, "SecurityOpt": [ "label=type:unconfined_t" ], "Binds": [ "/home/sumantro:/output/", "/var/lib/containers/storage:/var/lib/containers/storage" ] }, "Labels": { "bootc.image.builder": "true" }, "Cmd": [ "quay.io/bootc-extension/httpd:latest", "--output", "/output/", "--local", "--type", "qcow2", "--target-arch", "amd64" ] } ---------- podman run \ --name httpd-bootc-image-builder \ --tty \ --privileged \ --security-opt label=type:unconfined_t \ -v /home/sumantro:/output/ \ -v /var/lib/containers/storage:/var/lib/containers/storage \ --label bootc.image.builder=true \ quay.io/centos-bootc/bootc-image-builder:latest-1714633180 \ quay.io/bootc-extension/httpd:latest \ --output \ /output/ \ --local \ --type \ qcow2 \ --target-arch \ amd64 ----------