Add linux-vm Docker build files for rego-tunnel
Some checks failed
Test / test (push) Has been cancelled

This commit is contained in:
2025-12-25 07:39:42 +00:00
parent 25a1985d20
commit 3a674bc44d
4 changed files with 76 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/bash
exec qemu-system-x86_64 \
-enable-kvm \
-cpu host \
-m ${VM_RAM:-8G} \
-smp ${VM_CPUS:-4} \
-hda /vm/linux-vm.qcow2 \
-netdev user,id=net0,hostfwd=tcp::2222-:22 \
-device virtio-net-pci,netdev=net0 \
-vnc :0 \
-vga virtio \
-usb \
-device usb-tablet