crun-vm is an OCI Runtime that enables Podman, Docker, and Kubernetes to run QEMU-compatible Virtual Machine (VM) images. This means you can:
- Run VMs as easily as you run containers.
 - Manage containers and VMs together using the same standard tooling.
 
| 
 Install crun-vm: $ dnf install crun-vmLaunch a VM from a disk image packaged in a container: $ podman run --runtime crun-vm -it \
    quay.io/containerdisks/fedora:40Launch a VM from a disk image under  $ podman run --runtime crun-vm -it \
    --rootfs my-image-dir/Launch a VM from a bootable container: $ podman run --runtime crun-vm -it \
    quay.io/crun-vm/example-fedora-bootc:40Set the password for a VM's default user: $ podman run --runtime crun-vm -it \
    quay.io/containerdisks/fedora:40 \
    --password pass  # for user "fedora"Exec (ssh) into a VM: $ podman exec -it --latest -- --as fedora | 
 
 This project is released under the GPL 2.0 (or later) license. See LICENSE.  | 
