Skip to content

Instantly share code, notes, and snippets.

@saimonmoore
Created November 26, 2012 16:19
Show Gist options
  • Save saimonmoore/fd4843af9097cc48179d to your computer and use it in GitHub Desktop.
Save saimonmoore/fd4843af9097cc48179d to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
defaults = {
:memory => 2048,
:cpus => 2,
:box => 'precise64',
}
Vagrant::Config.run do |config|
config.vm.box = defaults[:box]
config.vm.box_url = "http://files.vagrantup.com/#{defaults[:box]}.box"
config.vm.customize ['modifyvm', :id, '--memory', defaults[:memory], '--cpus', defaults[:cpus]]
config.vm.host_name = "teambox-enterprise-test"
config.vm.network :hostonly, '192.168.33.6'
config.vm.forward_port 22, 2256
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment