Alberto Faria
Alberto Faria
Add support for IORING_SETUP_SQE128 and IORING_SETUP_CQE32, and add an `UringCmd` opcode corresponding to IORING_OP_URING_CMD. These changes should be backward-compatible.
We attempt to detect if a container image is bootable. We can't easily retrieve the image's labels, so we instead look for files under /usr/lib/bootc/install. If there are none, it...
When combined with --emulated, this enables running VMs with an architecture different from the host's. Closes #62. TODO - [ ] Wait for #54 to be merged. - [ ]...
TODO: - [ ] Wait for https://github.com/containers/crun-vm/pull/54 to be merged. - [ ] Wait for proper aarch64 nested virt support to be available in Fedora.
Add a quick start to the README, reorganize and make the main documentation less reference-like, and add a man page. TODO: - [ ] Wait for #54 to be merged.
It would be very nice to be able to checkpoint (i.e., snapshot) a running container/VM with: ```console $ podman container checkpoint ``` And at a later time restore it to...
Automate testing against the [OCI Runtime validation suite](https://github.com/opencontainers/runtime-tools#testing-oci-runtimes).
Currently, if the user's ssh keypair has a passphrase, podman-exec will always ask for it. We could often avoid this by sharing the host's ssh-agent Unix domain socket at `$SSH_AUTH_SOCK`...
Currently, regular files bind-mounted from the host into the guest appear as block devices. virtiofs could in principle be used to bind-mount them as actual regular files instead. This would...
To run [bootc](https://github.com/containers/bootc/) bootable containers using crun-vm, users currently must first create a VM image from the container using something like [bootc-image-builder](https://github.com/osbuild/bootc-image-builder), and then pass that image to crun-vm. We...