Created
June 13, 2014 18:43
-
-
Save PunkChameleon/a6af3d8d21840bb4e93a to your computer and use it in GitHub Desktop.
Vagrantfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- 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