Skip to content

Instantly share code, notes, and snippets.

@PunkChameleon
Created June 13, 2014 18:43
Show Gist options
  • Select an option

  • Save PunkChameleon/a6af3d8d21840bb4e93a to your computer and use it in GitHub Desktop.

Select an option

Save PunkChameleon/a6af3d8d21840bb4e93a to your computer and use it in GitHub Desktop.
Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "windows8" do |windows|
windows.vm.box_url = "https://url.windows.box"
windows.vm.communicator = "winrm"
end
config.vm.define "ubuntu" do |ubuntu|
ubuntu.vm.box = "ask/ubuntu-13.10-desktop-64bit"
end
config.vm.define "centos" do |centos|
centos.vm.box = "box-cutter/centos64-desktop"
end
config.vm.provider "virtualbox" do |vb|
vb.gui = true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment