gitextract_kwe40__b/ ├── .codespellrc ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yaml │ │ ├── config.yml │ │ └── feature_request.yaml │ ├── actions/ │ │ ├── setup_cache_for_template/ │ │ │ └── action.yml │ │ └── upload_failure_logs_if_exists/ │ │ └── action.yml │ ├── dependabot.yml │ └── workflows/ │ ├── codeql.yaml │ ├── release.yml │ ├── scorecard.yml │ ├── spell.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── .golangci.yml ├── .ls-lint.yml ├── .markdownlint.json ├── .protolint.yaml ├── .shellcheckrc ├── .yamllint ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── NOTICE ├── README.md ├── ROADMAP.md ├── cmd/ │ ├── apptainer.lima │ ├── docker.lima │ ├── kubectl.lima │ ├── lima │ ├── lima-driver-krunkit/ │ │ └── main_darwin_arm64.go │ ├── lima-driver-qemu/ │ │ └── main.go │ ├── lima-driver-vz/ │ │ └── main_darwin.go │ ├── lima-driver-wsl2/ │ │ └── main_windows.go │ ├── lima-guestagent/ │ │ ├── daemon_linux.go │ │ ├── fake_cloud_init_darwin.go │ │ ├── install_systemd_linux.go │ │ ├── lima-guestagent.TEMPLATE.service │ │ ├── main.go │ │ ├── root_darwin.go │ │ ├── root_linux.go │ │ └── root_others.go │ ├── lima.bat │ ├── limactl/ │ │ ├── clone.go │ │ ├── completion.go │ │ ├── copy.go │ │ ├── debug.go │ │ ├── delete.go │ │ ├── disk.go │ │ ├── edit.go │ │ ├── editflags/ │ │ │ ├── editflags.go │ │ │ └── editflags_test.go │ │ ├── factory-reset.go │ │ ├── gendoc.go │ │ ├── genschema.go │ │ ├── guest-install.go │ │ ├── hostagent.go │ │ ├── info.go │ │ ├── list.go │ │ ├── main.go │ │ ├── main_darwin.go │ │ ├── main_qemu.go │ │ ├── main_windows.go │ │ ├── network.go │ │ ├── protect.go │ │ ├── prune.go │ │ ├── restart.go │ │ ├── shell.go │ │ ├── shell_test.go │ │ ├── show-ssh.go │ │ ├── snapshot.go │ │ ├── start-at-login.go │ │ ├── start-at-login_unix.go │ │ ├── start-at-login_windows.go │ │ ├── start.go │ │ ├── stop.go │ │ ├── sudoers.go │ │ ├── sudoers_darwin.go │ │ ├── sudoers_nodarwin.go │ │ ├── template.go │ │ ├── tunnel.go │ │ ├── unprotect.go │ │ ├── usernet.go │ │ └── watch.go │ ├── limactl-mcp/ │ │ └── main.go │ ├── limactl-url-fedora-rawhide │ ├── nerdctl.lima │ ├── podman.lima │ └── yq/ │ └── yq.go ├── docs/ │ └── README.md ├── go.mod ├── go.sum ├── hack/ │ ├── allowed-licenses.txt │ ├── ansible-test.yaml │ ├── bats/ │ │ ├── README.md │ │ ├── extras/ │ │ │ ├── README.md │ │ │ ├── colima.bats │ │ │ ├── freebsd.bats │ │ │ ├── k8s.bats │ │ │ └── port-monitor.bats │ │ ├── helpers/ │ │ │ ├── limactl.bash │ │ │ ├── load.bash │ │ │ └── logs.bash │ │ └── tests/ │ │ ├── copy.bats │ │ ├── list.bats │ │ ├── mcp.bats │ │ ├── path.bats │ │ ├── preserve-env.bats │ │ ├── protect.bats │ │ ├── shell-sync.bats │ │ ├── shell.bats │ │ ├── url-github.bats │ │ └── yq.bats │ ├── brew-install-version.sh │ ├── cache-common-inc.sh │ ├── calculate-cache.sh │ ├── codesign/ │ │ └── debugserver │ ├── common.inc.sh │ ├── debug-cache.sh │ ├── gogenerate/ │ │ └── protoc.sh │ ├── inject-cmdline-to-template.sh │ ├── install-qemu.sh │ ├── ltag/ │ │ ├── bash.txt │ │ ├── dockerfile.txt │ │ ├── go.txt │ │ └── makefile.txt │ ├── oss-fuzz-build.sh │ ├── test-mount-home.sh │ ├── test-nonplain-static-port-forward.sh │ ├── test-plain-static-port-forward.sh │ ├── test-port-forwarding.pl │ ├── test-selinux.sh │ ├── test-templates/ │ │ ├── alpine-iso-9p-writable.yaml │ │ ├── net-user-v2.yaml │ │ └── test-misc.yaml │ ├── test-templates.sh │ ├── test-upgrade.sh │ ├── toolexec-for-codesign.sh │ ├── tools/ │ │ ├── go.mod │ │ ├── go.sum │ │ └── pinversion.go │ ├── update-template-almalinux-kitten.sh │ ├── update-template-almalinux.sh │ ├── update-template-alpine.sh │ ├── update-template-archlinux.sh │ ├── update-template-centos-stream.sh │ ├── update-template-debian.sh │ ├── update-template-fedora.sh │ ├── update-template-freebsd.sh │ ├── update-template-macos.sh │ ├── update-template-opensuse.sh │ ├── update-template-oraclelinux.sh │ ├── update-template-rocky.sh │ ├── update-template-ubuntu.sh │ ├── update-template.sh │ └── validate-artifact.sh ├── pkg/ │ ├── apfs/ │ │ ├── chown.go │ │ ├── chown_darwin_test.go │ │ ├── fletcher64.go │ │ ├── fletcher64_test.go │ │ └── types.go │ ├── autostart/ │ │ ├── autostart.go │ │ ├── autostart_test.go │ │ ├── launchd/ │ │ │ ├── io.lima-vm.autostart.INSTANCE.plist │ │ │ ├── launchd.go │ │ │ └── launchd_test.go │ │ ├── managers.go │ │ ├── managers_darwin.go │ │ ├── managers_linux.go │ │ ├── managers_others.go │ │ └── systemd/ │ │ ├── lima-vm@INSTANCE.service │ │ ├── systemd.go │ │ ├── systemd_linux.go │ │ ├── systemd_others.go │ │ └── systemd_test.go │ ├── bicopy/ │ │ └── bicopy.go │ ├── cacheutil/ │ │ └── cacheutil.go │ ├── cidata/ │ │ ├── cidata.TEMPLATE.d/ │ │ │ ├── boot.FreeBSD/ │ │ │ │ └── 05-lima-mounts.sh │ │ │ ├── boot.Linux/ │ │ │ │ ├── 00-alpine-user-group.sh │ │ │ │ ├── 00-check-rtc-and-wait-ntp.sh │ │ │ │ ├── 00-guest-home.sh │ │ │ │ ├── 00-modprobe.sh │ │ │ │ ├── 00-reboot-if-required.sh │ │ │ │ ├── 01-alpine-ash-as-bash.sh │ │ │ │ ├── 04-persistent-data-volume.sh │ │ │ │ ├── 05-lima-disks.sh │ │ │ │ ├── 05-lima-mounts.sh │ │ │ │ ├── 06-enable-mdns-on-systemd.sh │ │ │ │ ├── 06-etc-hosts.sh │ │ │ │ ├── 07-etc-environment.sh │ │ │ │ ├── 08-shell-prompt.sh │ │ │ │ ├── 09-host-dns-setup.sh │ │ │ │ ├── 10-alpine-prep.sh │ │ │ │ ├── 11-colorterm-environment.sh │ │ │ │ ├── 20-rootless-base.sh │ │ │ │ ├── 25-guestagent-base.sh │ │ │ │ ├── 30-install-packages.sh │ │ │ │ ├── 35-setup-packages.sh │ │ │ │ └── 40-install-containerd.sh │ │ │ ├── boot.essential.FreeBSD/ │ │ │ │ └── 00-freebsd-user-group.sh │ │ │ ├── boot.sh │ │ │ ├── etc_environment │ │ │ ├── lima.env │ │ │ ├── meta-data │ │ │ ├── network-config │ │ │ ├── param.env │ │ │ ├── user-data │ │ │ ├── util/ │ │ │ │ └── compare_version.sh │ │ │ └── util.FreeBSD/ │ │ │ └── print_cidata_fstab.lua │ │ ├── cidata.go │ │ ├── cidata_test.go │ │ ├── cloudinittypes/ │ │ │ ├── metadata.go │ │ │ └── userdata.go │ │ ├── fuzz_test.go │ │ ├── template.go │ │ └── template_test.go │ ├── copytool/ │ │ ├── copytool.go │ │ ├── copytool_test.go │ │ ├── rsync.go │ │ └── scp.go │ ├── debugutil/ │ │ └── debugutil.go │ ├── downloader/ │ │ ├── downloader.go │ │ ├── downloader_test.go │ │ ├── fuzz_test.go │ │ └── testdata/ │ │ └── downloader.txt │ ├── driver/ │ │ ├── driver.go │ │ ├── external/ │ │ │ ├── client/ │ │ │ │ ├── client.go │ │ │ │ └── methods.go │ │ │ ├── driver.pb.desc │ │ │ ├── driver.pb.go │ │ │ ├── driver.proto │ │ │ ├── driver_grpc.pb.go │ │ │ ├── gen.go │ │ │ └── server/ │ │ │ ├── methods.go │ │ │ └── server.go │ │ ├── krunkit/ │ │ │ ├── boot.Linux/ │ │ │ │ ├── 00-add-user-to-video-render-group.sh │ │ │ │ └── 01-gpu-device-perms.sh │ │ │ ├── errors_darwin_arm64.go │ │ │ ├── krunkit_darwin_arm64.go │ │ │ └── krunkit_driver_darwin_arm64.go │ │ ├── qemu/ │ │ │ ├── entitlementutil/ │ │ │ │ └── entitlementutil.go │ │ │ ├── qemu.go │ │ │ ├── qemu_driver.go │ │ │ ├── qemu_test.go │ │ │ └── register.go │ │ ├── vz/ │ │ │ ├── boot.Linux/ │ │ │ │ └── 05-rosetta-volume.sh │ │ │ ├── errors_darwin.go │ │ │ ├── network_darwin.go │ │ │ ├── network_darwin_test.go │ │ │ ├── register.go │ │ │ ├── rosetta_directory_share.go │ │ │ ├── rosetta_directory_share_arm64.go │ │ │ ├── vm_darwin.go │ │ │ ├── vm_darwin_amd64.go │ │ │ ├── vm_darwin_arm64.go │ │ │ ├── vsock_forwarder.go │ │ │ └── vz_driver_darwin.go │ │ └── wsl2/ │ │ ├── boot.Linux/ │ │ │ └── 02-no-cloud-init-setup.sh │ │ ├── errors_windows.go │ │ ├── fs.go │ │ ├── lima-init.TEMPLATE │ │ ├── register.go │ │ ├── vm_windows.go │ │ └── wsl_driver_windows.go │ ├── driverutil/ │ │ ├── disk.go │ │ ├── disk_test.go │ │ ├── instance.go │ │ └── vm.go │ ├── editutil/ │ │ ├── editorcmd/ │ │ │ └── editorcmd.go │ │ └── editutil.go │ ├── envutil/ │ │ ├── envutil.go │ │ └── envutil_test.go │ ├── executil/ │ │ ├── command.go │ │ ├── opts_others.go │ │ └── opts_windows.go │ ├── fileutils/ │ │ └── download.go │ ├── freeport/ │ │ ├── freeport.go │ │ ├── freeport_unix.go │ │ └── freeport_windows.go │ ├── fsutil/ │ │ ├── fsutil_linux.go │ │ └── fsutil_others.go │ ├── guestagent/ │ │ ├── api/ │ │ │ ├── client/ │ │ │ │ ├── client.go │ │ │ │ └── credentials.go │ │ │ ├── gen.go │ │ │ ├── guestservice.pb.desc │ │ │ ├── guestservice.pb.go │ │ │ ├── guestservice.proto │ │ │ ├── guestservice_grpc.pb.go │ │ │ ├── ipport.go │ │ │ └── server/ │ │ │ └── server.go │ │ ├── fakecloudinit/ │ │ │ └── fakecloudinit_darwin.go │ │ ├── guestagent.go │ │ ├── guestagent_linux.go │ │ ├── kubernetesservice/ │ │ │ ├── kubernetesservice.go │ │ │ ├── kubernetesservice_test.go │ │ │ └── types.go │ │ ├── serialport/ │ │ │ ├── serialconn_linux.go │ │ │ ├── seriallistener_linux.go │ │ │ └── serialport_linux.go │ │ ├── sockets/ │ │ │ ├── sockets.go │ │ │ ├── sockets_linux.go │ │ │ └── sockets_linux_test.go │ │ ├── ticker/ │ │ │ ├── compound.go │ │ │ ├── ebpf_linux.go │ │ │ ├── simple.go │ │ │ └── ticker.go │ │ └── timesync/ │ │ ├── timesync_linux.go │ │ └── timesync_others.go │ ├── guestpatch/ │ │ └── macos/ │ │ └── macos_darwin.go │ ├── hostagent/ │ │ ├── api/ │ │ │ ├── api.go │ │ │ ├── client/ │ │ │ │ └── client.go │ │ │ └── server/ │ │ │ └── server.go │ │ ├── dns/ │ │ │ ├── dns.go │ │ │ └── dns_test.go │ │ ├── events/ │ │ │ ├── events.go │ │ │ └── watcher.go │ │ ├── hostagent.go │ │ ├── hostagent_unix.go │ │ ├── hostagent_windows.go │ │ ├── inotify.go │ │ ├── inotify_darwin.go │ │ ├── inotify_linux.go │ │ ├── inotify_others.go │ │ ├── inotify_test.go │ │ ├── mount.go │ │ ├── port.go │ │ ├── port_darwin.go │ │ ├── port_others.go │ │ ├── port_windows.go │ │ ├── requirements.go │ │ └── timesync.go │ ├── httpclientutil/ │ │ ├── httpclientutil.go │ │ ├── httpclientutil_others.go │ │ └── httpclientutil_windows.go │ ├── httputil/ │ │ └── httputil.go │ ├── identifiers/ │ │ ├── validate.go │ │ └── validate_test.go │ ├── imgutil/ │ │ ├── manager.go │ │ ├── nativeimgutil/ │ │ │ ├── asifutil/ │ │ │ │ ├── asif_darwin.go │ │ │ │ ├── asif_darwin_test.go │ │ │ │ └── asif_others.go │ │ │ ├── fuzz_test.go │ │ │ ├── nativeimgutil.go │ │ │ └── nativeimgutil_test.go │ │ └── proxyimgutil/ │ │ └── proxyimgutil.go │ ├── instance/ │ │ ├── ansible.go │ │ ├── clone.go │ │ ├── create.go │ │ ├── delete.go │ │ ├── hostname/ │ │ │ ├── hostname.go │ │ │ └── hostname_test.go │ │ ├── restart.go │ │ ├── start.go │ │ ├── start_unix.go │ │ ├── start_windows.go │ │ └── stop.go │ ├── ioutilx/ │ │ └── ioutilx.go │ ├── iso9660util/ │ │ ├── fuzz_test.go │ │ ├── iso9660util.go │ │ └── joliet.go │ ├── jsonschemautil/ │ │ ├── jsonschemautil.go │ │ ├── jsonschemautil_test.go │ │ └── testdata/ │ │ ├── invalid.yaml │ │ ├── schema.json │ │ └── valid.yaml │ ├── limactlutil/ │ │ └── limactlutil.go │ ├── limainfo/ │ │ └── limainfo.go │ ├── limatmpl/ │ │ ├── abs.go │ │ ├── abs_test.go │ │ ├── embed.go │ │ ├── embed_test.go │ │ ├── github.go │ │ ├── locator.go │ │ ├── locator_test.go │ │ └── template.go │ ├── limatype/ │ │ ├── dirnames/ │ │ │ └── dirnames.go │ │ ├── filenames/ │ │ │ └── filenames.go │ │ ├── lima_instance.go │ │ └── lima_yaml.go │ ├── limayaml/ │ │ ├── containerd.yaml │ │ ├── defaults.go │ │ ├── defaults_test.go │ │ ├── defaults_unix.go │ │ ├── defaults_unix_test.go │ │ ├── defaults_windows.go │ │ ├── limayaml_test.go │ │ ├── load.go │ │ ├── load_test.go │ │ ├── marshal.go │ │ ├── marshal_test.go │ │ ├── validate.go │ │ ├── validate_test.go │ │ └── validate_unix_test.go │ ├── localpathutil/ │ │ └── localpathutil.go │ ├── lockutil/ │ │ ├── lockutil_test.go │ │ ├── lockutil_unix.go │ │ └── lockutil_windows.go │ ├── logrusutil/ │ │ ├── logrusutil.go │ │ └── logrusutil_test.go │ ├── mcp/ │ │ ├── msi/ │ │ │ ├── filesystem.go │ │ │ ├── msi.go │ │ │ └── shell.go │ │ └── toolset/ │ │ ├── filesystem.go │ │ ├── shell.go │ │ └── toolset.go │ ├── must/ │ │ └── must.go │ ├── networks/ │ │ ├── commands.go │ │ ├── commands_darwin_test.go │ │ ├── commands_test.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── const.go │ │ ├── networks.TEMPLATE.yaml │ │ ├── networks.go │ │ ├── reconcile/ │ │ │ └── reconcile.go │ │ ├── sudoers.go │ │ ├── usernet/ │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── dnshosts/ │ │ │ │ ├── dnshosts.go │ │ │ │ └── dnshosts_test.go │ │ │ ├── gvproxy.go │ │ │ ├── gvproxy_test.go │ │ │ ├── recoincile.go │ │ │ └── udpfileconn.go │ │ └── validate.go │ ├── osutil/ │ │ ├── dns_darwin.go │ │ ├── dns_others.go │ │ ├── exit.go │ │ ├── file.go │ │ ├── machineid.go │ │ ├── machineid_test.go │ │ ├── mount_darwin.go │ │ ├── osutil_linux.go │ │ ├── osutil_others.go │ │ ├── osutil_unix.go │ │ ├── osutil_windows.go │ │ ├── osversion_darwin.go │ │ ├── osversion_others.go │ │ ├── rosetta_darwin.go │ │ ├── rosetta_others.go │ │ ├── user.go │ │ └── user_test.go │ ├── plist/ │ │ ├── plist.go │ │ └── plist_test.go │ ├── plugins/ │ │ └── plugins.go │ ├── portfwd/ │ │ ├── client.go │ │ ├── control_others.go │ │ ├── control_windows.go │ │ ├── forward.go │ │ ├── listener.go │ │ ├── listener_darwin.go │ │ └── listener_others.go │ ├── portfwdserver/ │ │ └── server.go │ ├── progressbar/ │ │ └── progressbar.go │ ├── ptr/ │ │ ├── ptr.go │ │ └── ptr_test.go │ ├── qemuimgutil/ │ │ ├── qemuimgutil.go │ │ └── qemuimgutil_test.go │ ├── reflectutil/ │ │ └── reflectutil.go │ ├── registry/ │ │ ├── registry.go │ │ └── registry_test.go │ ├── snapshot/ │ │ └── snapshot.go │ ├── sshutil/ │ │ ├── format.go │ │ ├── sshutil.go │ │ └── sshutil_test.go │ ├── store/ │ │ ├── disk.go │ │ ├── disk_test.go │ │ ├── fuzz_test.go │ │ ├── instance.go │ │ ├── instance_test.go │ │ ├── store.go │ │ └── store_test.go │ ├── sysprof/ │ │ ├── network_darwin.go │ │ └── sysprof_darwin.go │ ├── templatestore/ │ │ └── templatestore.go │ ├── textutil/ │ │ ├── textutil.go │ │ └── textutil_test.go │ ├── uiutil/ │ │ └── uiutil.go │ ├── usrlocal/ │ │ └── usrlocal.go │ ├── version/ │ │ ├── version.go │ │ └── versionutil/ │ │ ├── versionutil.go │ │ └── versionutil_test.go │ ├── windows/ │ │ ├── process_windows.go │ │ ├── registry_windows.go │ │ └── wsl_util_windows.go │ └── yqutil/ │ ├── fuzz_test.go │ ├── yqutil.go │ └── yqutil_test.go ├── templates/ │ ├── README.md │ ├── _default/ │ │ └── mounts.yaml │ ├── _images/ │ │ ├── almalinux-10.yaml │ │ ├── almalinux-8.yaml │ │ ├── almalinux-9.yaml │ │ ├── almalinux-kitten-10.yaml │ │ ├── alpine-iso.yaml │ │ ├── alpine.yaml │ │ ├── archlinux.yaml │ │ ├── centos-stream-10.yaml │ │ ├── centos-stream-9.yaml │ │ ├── debian-11.yaml │ │ ├── debian-12.yaml │ │ ├── debian-13.yaml │ │ ├── fedora-41.yaml │ │ ├── fedora-42.yaml │ │ ├── fedora-43.yaml │ │ ├── freebsd-15.yaml │ │ ├── macos-15.yaml │ │ ├── macos-26.yaml │ │ ├── opensuse-leap-15.yaml │ │ ├── opensuse-leap-16.yaml │ │ ├── oraclelinux-10.yaml │ │ ├── oraclelinux-8.yaml │ │ ├── oraclelinux-9.yaml │ │ ├── rocky-10.yaml │ │ ├── rocky-8.yaml │ │ ├── rocky-9.yaml │ │ ├── ubuntu-20.04.yaml │ │ ├── ubuntu-22.04.yaml │ │ ├── ubuntu-24.04.yaml │ │ ├── ubuntu-24.10.yaml │ │ ├── ubuntu-25.04.yaml │ │ └── ubuntu-25.10.yaml │ ├── almalinux-10.yaml │ ├── almalinux-8.yaml │ ├── almalinux-9.yaml │ ├── almalinux-kitten-10.yaml │ ├── alpine-iso.yaml │ ├── alpine.yaml │ ├── apptainer-rootful.yaml │ ├── apptainer.yaml │ ├── archlinux.yaml │ ├── buildkit.yaml │ ├── centos-stream-10.yaml │ ├── centos-stream-9.yaml │ ├── debian-11.yaml │ ├── debian-12.yaml │ ├── debian-13.yaml │ ├── default.yaml │ ├── docker-rootful.yaml │ ├── docker.yaml │ ├── experimental/ │ │ ├── alsa.yaml │ │ ├── debian-sid.yaml │ │ ├── fedora-rawhide.yaml │ │ ├── freebsd-16.yaml │ │ ├── gentoo.yaml │ │ ├── opensuse-tumbleweed.yaml │ │ ├── rke2.yaml │ │ ├── u7s.yaml │ │ ├── ubuntu-26.04.yaml │ │ ├── vnc.yaml │ │ └── wsl2.yaml │ ├── faasd.yaml │ ├── fedora-41.yaml │ ├── fedora-42.yaml │ ├── fedora-43.yaml │ ├── freebsd-15.yaml │ ├── homebrew-macos.yaml │ ├── k0s.yaml │ ├── k3s.yaml │ ├── k8s.yaml │ ├── linuxbrew.yaml │ ├── macos-15.yaml │ ├── macos-26.yaml │ ├── opensuse-leap-15.yaml │ ├── opensuse-leap-16.yaml │ ├── oraclelinux-10.yaml │ ├── oraclelinux-8.yaml │ ├── oraclelinux-9.yaml │ ├── podman-rootful.yaml │ ├── podman.yaml │ ├── rocky-10.yaml │ ├── rocky-8.yaml │ ├── rocky-9.yaml │ ├── ubuntu-20.04.yaml │ ├── ubuntu-22.04.yaml │ ├── ubuntu-24.04.yaml │ ├── ubuntu-24.10.yaml │ ├── ubuntu-25.04.yaml │ └── ubuntu-25.10.yaml ├── vz.entitlements └── website/ ├── .gitignore ├── .nvmrc ├── Makefile ├── README.md ├── assets/ │ └── scss/ │ └── _variables_project.scss ├── config.yaml ├── content/ │ └── en/ │ ├── _index.html │ ├── docs/ │ │ ├── _index.md │ │ ├── community/ │ │ │ ├── _index.md │ │ │ ├── contributing.md │ │ │ ├── governance.md │ │ │ ├── roadmap.md │ │ │ └── subprojects.md │ │ ├── config/ │ │ │ ├── _index.md │ │ │ ├── ai/ │ │ │ │ ├── _index.md │ │ │ │ ├── inside/ │ │ │ │ │ └── _index.md │ │ │ │ └── outside/ │ │ │ │ ├── _index.md │ │ │ │ └── gemini.md │ │ │ ├── disk.md │ │ │ ├── environment-variables.md │ │ │ ├── gpu.md │ │ │ ├── mount.md │ │ │ ├── multi-arch.md │ │ │ ├── network/ │ │ │ │ ├── _index.md │ │ │ │ ├── user-v2.md │ │ │ │ ├── user.md │ │ │ │ └── vmnet.md │ │ │ ├── plugin/ │ │ │ │ ├── _index.md │ │ │ │ ├── cli.md │ │ │ │ ├── url.md │ │ │ │ └── vm.md │ │ │ ├── port.md │ │ │ └── vmtype/ │ │ │ ├── _index.md │ │ │ ├── krunkit.md │ │ │ ├── qemu.md │ │ │ ├── vz.md │ │ │ └── wsl2.md │ │ ├── dev/ │ │ │ ├── _index.md │ │ │ ├── drivers.md │ │ │ ├── git.md │ │ │ ├── internals.md │ │ │ └── testing/ │ │ │ ├── _index.md │ │ │ └── bats-style.md │ │ ├── examples/ │ │ │ ├── _index.md │ │ │ ├── ai.md │ │ │ ├── containers/ │ │ │ │ ├── _index.md │ │ │ │ ├── apptainer/ │ │ │ │ │ └── _index.md │ │ │ │ ├── containerd/ │ │ │ │ │ ├── _index.md │ │ │ │ │ └── advanced/ │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── bypass4netns.md │ │ │ │ │ ├── gomodjail.md │ │ │ │ │ └── stargz.md │ │ │ │ ├── docker/ │ │ │ │ │ └── _index.md │ │ │ │ ├── kubernetes/ │ │ │ │ │ └── _index.md │ │ │ │ └── podman/ │ │ │ │ └── _index.md │ │ │ ├── gha.md │ │ │ └── vscode.md │ │ ├── faq/ │ │ │ ├── _index.md │ │ │ └── colima.md │ │ ├── installation/ │ │ │ ├── _index.md │ │ │ └── source.md │ │ ├── reference/ │ │ │ └── _index.md │ │ ├── releases/ │ │ │ ├── _index.md │ │ │ ├── breaking.md │ │ │ ├── deprecated.md │ │ │ └── experimental.md │ │ ├── security/ │ │ │ └── _index.md │ │ ├── talks/ │ │ │ └── _index.md │ │ ├── templates/ │ │ │ ├── _index.md │ │ │ └── github.md │ │ └── usage/ │ │ ├── _index.md │ │ ├── guests/ │ │ │ ├── _index.md │ │ │ ├── freebsd.md │ │ │ ├── linux.md │ │ │ └── macos.md │ │ └── ssh.md │ └── search.md ├── data/ │ ├── adopters.yaml │ └── helpfullinks.yaml ├── go.mod ├── go.sum ├── hugo.toml ├── layouts/ │ ├── 404.html │ ├── partials/ │ │ ├── footer.html │ │ └── navbar.html │ └── shortcodes/ │ ├── blocks/ │ │ ├── adopters.html │ │ ├── cncf.html │ │ ├── cover.html │ │ └── helpfullinks.html │ ├── fixlinks.html │ └── readtemplates.html ├── netlify.toml ├── package.json └── static/ └── images/ └── internals/ └── lima-sequence-diagram.puml