github.com/aspring/packer@v0.8.1-0.20150629211158-9db281ac0f89/website/source/docs/builders/virtualbox.html.markdown (about)

     1  ---
     2  layout: "docs"
     3  page_title: "VirtualBox Builder"
     4  description: |-
     5    The VirtualBox Packer builder is able to create VirtualBox virtual machines and export them in the OVA or OVF format.
     6  ---
     7  
     8  # VirtualBox Builder
     9  
    10  The VirtualBox Packer builder is able to create [VirtualBox](http://www.virtualbox.org)
    11  virtual machines and export them in the OVA or OVF format.
    12  
    13  Packer actually comes with multiple builders able to create VirtualBox
    14  machines, depending on the strategy you want to use to build the image.
    15  Packer supports the following VirtualBox builders:
    16  
    17  * [virtualbox-iso](/docs/builders/virtualbox-iso.html) - Starts from
    18    an ISO file, creates a brand new VirtualBox VM, installs an OS,
    19    provisions software within the OS, then exports that machine to create
    20    an image. This is best for people who want to start from scratch.
    21  
    22  * [virtualbox-ovf](/docs/builders/virtualbox-ovf.html) - This builder
    23    imports an existing OVF/OVA file, runs provisioners on top of that VM,
    24    and exports that machine to create an image. This is best if you have
    25    an existing VirtualBox VM export you want to use as the source. As an
    26    additional benefit, you can feed the artifact of this builder back into
    27    itself to iterate on a machine.