Skip to content

Instantly share code, notes, and snippets.

@emilsoman
Created November 7, 2012 08:24
Show Gist options
  • Save emilsoman/4030169 to your computer and use it in GitHub Desktop.
Save emilsoman/4030169 to your computer and use it in GitHub Desktop.
MultiVM with different boxes
Vagrant::Config.run do |config|
config.vm.define :node1 do |node_config|
node_config.vm.box = "lucid32"
node_config.vm.network :bridged
end
config.vm.define :node2 do |node_config|
node_config.vm.box = "precise32"
node_config.vm.network :bridged
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment