blob: 0d276e9809934fab79f5e43ef3c0e1e1b3544311 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|