Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 843 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 843 Bytes

This is a Docker image that can be used to build a customized boot2docker.iso as described in the boot2docker docs.

The customized image is set up to allow arm images to be executed using qemu (more info).

To build the iso:

docker run --rm danimal/boot2docker-qemu > boot2docker-qemu.iso

Then init and start a new boot2docker VM with the iso:

boot2docker init --iso="./boot2docker-qemu.iso \
		--vm="boot2docker-qemu-vm"
boot2docker up --vm="boot2docker-qemu-vm"
$(boot2docker --vm=boot2docker-qemu-vm shellinit)

You can switch back to your normal boot2docker VM like this:

$(boot2docker --vm=boot2docker-vm shellinit)