Use ducttape to pull the image and start
$ ducttape pull ghcr.io/ducttape-lab/server-base-cloud
$ dutctape start ghcr.io/ducttape-lab/server-base-cloud -n server`You can use Podman or Nerdctl
$ podman run --rm -it --name server ghcr.io/ducttape-lab/server-base$ wget https://github.com/ducttape-lab/server-base/releases/download/latest/disk.qcow2 \
-O base.qcow2
$ sudo virt-install \
--name base --os-variant fedora-eln \
--cpu host --vcpus 4 --memory 4096 \
--import --disk ./base.qcow2,format=qcow2which allows you to use bootc ghcr.io/ducttape-lab/server-base-bootc
To update the base or application, you can use the bootc update-command.
$ ssh admin@<ip>
$ sudo bootc update