2013-06-12 13:05:45 -04:00
|
|
|
---
|
2015-07-22 22:31:00 -04:00
|
|
|
description: |
|
|
|
|
The VirtualBox Packer builder is able to create VirtualBox virtual machines and
|
|
|
|
export them in the OVA or OVF format.
|
|
|
|
layout: docs
|
|
|
|
page_title: VirtualBox Builder
|
|
|
|
...
|
2013-06-12 13:05:45 -04:00
|
|
|
|
|
|
|
# VirtualBox Builder
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
The VirtualBox Packer builder is able to create
|
2016-01-14 15:31:19 -05:00
|
|
|
[VirtualBox](https://www.virtualbox.org) virtual machines and export them in the
|
2015-07-22 22:31:00 -04:00
|
|
|
OVA or OVF format.
|
2013-06-12 13:05:45 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
Packer actually comes with multiple builders able to create VirtualBox machines,
|
|
|
|
depending on the strategy you want to use to build the image. Packer supports
|
|
|
|
the following VirtualBox builders:
|
2013-06-12 13:05:45 -04:00
|
|
|
|
2015-07-22 23:25:58 -04:00
|
|
|
- [virtualbox-iso](/docs/builders/virtualbox-iso.html) - Starts from an ISO
|
|
|
|
file, creates a brand new VirtualBox VM, installs an OS, provisions software
|
|
|
|
within the OS, then exports that machine to create an image. This is best
|
|
|
|
for people who want to start from scratch.
|
2013-06-12 13:05:45 -04:00
|
|
|
|
2015-07-22 23:25:58 -04:00
|
|
|
- [virtualbox-ovf](/docs/builders/virtualbox-ovf.html) - This builder imports
|
|
|
|
an existing OVF/OVA file, runs provisioners on top of that VM, and exports
|
|
|
|
that machine to create an image. This is best if you have an existing
|
|
|
|
VirtualBox VM export you want to use as the source. As an additional
|
|
|
|
benefit, you can feed the artifact of this builder back into itself to
|
|
|
|
iterate on a machine.
|