scottslowe-learning-tools/photon/Vagrantfile
Scott Lowe 86c4918c85 Initial commit
Add initial version of files for working with Project Photon
2015-04-20 12:33:51 -06:00

22 lines
567 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
# Specify Vagrant version and Vagrant API version
Vagrant.require_version ">= 1.6.0"
VAGRANTFILE_API_VERSION = "2"
# Create and configure the VMs
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Specify the Vagrant box to use
config.vm.box = "vmware/photon"
# Disable automatic box update checking
config.vm.box_check_update = false
# Use Vagrant's default insecure SSH key
config.ssh.insert_key = false
# Disable default synced folder
config.vm.synced_folder ".", "/vagrant", disabled: true
end