Skip to content

Deploying a Vagrant Box

shoenisch edited this page Apr 13, 2017 · 3 revisions

An official Vagrant box is available on Hashicorp Atlas. To get started:

vagrant init vmware/photon

Add the following lines to the Vagrant file:

config.vm.provider "virtualbox" do |v|
  v.customize ['modifyvm', :id, '--acpi', 'off']
end

A plugin to support Photon OS guests in Vagrant is available at https://github.com/vmware/vagrant-guests-photon. Install it.

Some users have found that our Vagrant box requires VirtualBox 4.3 or later. If you have issues, please check your version.

Clone this wiki locally