Dockerization of supported QEMU releases
Go to file
2015-05-01 17:28:16 -06:00
Dockerfile Remove qemu-kvm package from tianon/qmeu since it's a transition package and we don't use the transition helper it installs 2015-01-02 15:44:04 -07:00
README.md long-form the qemu README for easier readability 2015-05-01 17:28:16 -06:00
start-qemu lolwups 2014-09-20 01:24:50 -06:00

tianon/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 \
	tianon/qemu