From a2f4ef8a1d83ac42195ad9c10d95572b44609dcd Mon Sep 17 00:00:00 2001 From: spmfox Date: Mon, 27 May 2024 22:02:53 -0400 Subject: Initial commit of project --- templates/bootcblade-iso.sh.j2 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 templates/bootcblade-iso.sh.j2 (limited to 'templates/bootcblade-iso.sh.j2') diff --git a/templates/bootcblade-iso.sh.j2 b/templates/bootcblade-iso.sh.j2 new file mode 100644 index 0000000..0d276e9 --- /dev/null +++ b/templates/bootcblade-iso.sh.j2 @@ -0,0 +1,15 @@ +#!/bin/bash +podman run \ + --rm \ + -it \ + --privileged \ + --pull=newer \ + --security-opt label=type:unconfined_t \ + -v /root/bootcblade.config.toml:/config.toml \ + -v /root/bootcblade-output:/output \ + -v /var/lib/containers/storage:/var/lib/containers/storage \ + quay.io/centos-bootc/bootc-image-builder:latest \ + --type anaconda-iso \ + --rootfs xfs \ + --local \ + localhost/bootcblade:latest -- cgit