Dockerization of supported QEMU releases
Go to file
2021-11-22 17:52:46 +09:00
.github/workflows Use jq-template.awk 2020-08-27 16:34:48 -07:00
5.2 Update to Debian Bullseye 2021-08-23 14:29:57 -07:00
6.0 Update to Debian Bullseye 2021-08-23 14:29:57 -07:00
6.1 Update start-qemu 2021-11-15 17:42:19 +09:00
.gitattributes Fix .gitattributes specificity 2020-10-16 16:28:51 -07:00
.gitignore Use jq-template.awk 2020-08-27 16:34:48 -07:00
apply-templates.sh Add explicit "native" variants 2021-03-20 22:10:01 -07:00
Dockerfile.template Add 6.1.0 2021-08-24 13:48:22 -07:00
generate-stackbrew-library.sh Add 6.1.0 2021-08-24 13:48:22 -07:00
README.md Update README.md 2021-11-22 17:52:46 +09:00
start-qemu Try writing zero bytes to "/dev/kvm" as a more robust test for access 2021-03-19 08:57:33 -07:00
update.sh Use jq-template.awk 2020-08-27 16:34:48 -07:00
versions.json Add 6.1.0 2021-08-24 13:48:22 -07:00
versions.sh Use jq-template.awk 2020-08-27 16:34:48 -07:00

gnh1201/qemu (forked from tianon/docker-qemu)

$ touch /home/jsmith/hda.qcow2
$ docker run -it --rm \
	--device /dev/kvm \
	--name qemu-container \
	-v /home/jsmith/hda.qcow2:/tmp/hda.qcow2 \
	-e QEMU_HDA=/tmp/hda.qcow2 \
	-e QEMU_HDA_SIZE=100G \
	-e QEMU_CPU=4 \
	-e QEMU_RAM=4096 \
	-v /home/jsmith/downloads/debian.iso:/tmp/debian.iso:ro \
	-e QEMU_CDROM=/tmp/debian.iso \
	-e QEMU_BOOT='order=d' \
	-e QEMU_PORTS='2375 2376' \
	tianon/qemu:native

Note: port 22 will always be mapped (regardless of the contents of QEMU_PORTS).

For supplying additional arguments, use a command of start-qemu <args>. For example, to use -curses, one would docker run ... tianon/qemu start-qemu -curses.

For UEFI support, the ovmf package is installed, which can be utilized most easily by supplying --bios /usr/share/ovmf/OVMF.fd.

By default, this image will use QEMU's user-mode networking stack, which means if you want ping/ICMP working, you'll likely need to also include something like --sysctl net.ipv4.ping_group_range='0 2147483647' in your container runtime settings.

The native variants for amd64 only contain qemu-system-x86_64 -- the non-native variants contain QEMU compiled for a variety of target CPUs.

For non-native

$ touch /hdimages/armhf.qcow2
$ docker run -it --rm \
    --device /dev/kvm \
    --name qemu-container-arm \
    --user="$(id --user):$(id --group)" \
    -v /hdimages/armhf.qcow2:/tmp/hda.qcow2 \
    -v /bootimages/initrd-debian11-armhf.gz:/tmp/initrd.gz \
    -v /bootimages/vmlinuz-debian11-armhf:/tmp/vmlinuz \
    -e QEMU_HDA=/tmp/hda.qcow2 \
    -e QEMU_HDA_SIZE=20G \
    -e QEMU_CPU=1 \
    -e QEMU_RAM=1024 \
    -v /cdimages/debian-11.1.0-armhf-netinst.iso:/tmp/debian.iso:ro \
    -e QEMU_CDROM=/tmp/debian.iso \
    -e QEMU_BOOT='order=d' \
    -e QEMU_PORTS='2375 2376' \
    -e QEMU_ARCH='arm' \
    -e QEMU_MACHINE='virt' \
    -e QEMU_KERNEL=/tmp/vmlinuz \
    -e QEMU_INITRD=/tmp/initrd.gz \
    <your alias>/qemu:6.1

If ARM or MIPS is selected, vmlinuz(kernel image) and initrd are required. Please refer to this article and proceed.

Manually root activation

When using the non-native (e.g. ARM, MIPS) platform, it was confirmed that the settings were not reflected in /etc/passwd and /etc/shadow. Please refer to the two links below and set them up manually.